Skip to content

Commit

Permalink
docs: Updates version name
Browse files Browse the repository at this point in the history
  • Loading branch information
am-casper committed Oct 9, 2024
1 parent cdb71b1 commit 1829b3b
Show file tree
Hide file tree
Showing 5 changed files with 206 additions and 193 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ android {
defaultConfig {
applicationId "in.ac.iitr.mdg.appetizer"
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
targetSdkVersion 34
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
Expand Down
4 changes: 2 additions & 2 deletions lib/data/constants/env_config.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class EnvironmentConfig {
static const String BASE_URL = String.fromEnvironment(
'BASE_URL',
defaultValue: 'https://appetizer.onrender.com',
defaultValue: 'https://mess.iitr.ac.in',
);

static const String OAUTH_CLIENT_ID = String.fromEnvironment(
Expand All @@ -11,7 +11,7 @@ class EnvironmentConfig {

static const String OAUTH_REDIRECT_URI = String.fromEnvironment(
'OAUTH_REDIRECT_URI',
defaultValue: 'https://appetizer.onrender.com/oauth/',
defaultValue: 'https://mess.iitr.ac.in/api/user/oauth/redirect/',
);

static const String SENTRY_DSN = String.fromEnvironment('SENTRY_DSN');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ class _MonthlyRebatesState extends State<MonthlyRebates> {
onTap: () async {
DateTime? newDateTime = await showMonthPicker(
context: context,
headerColor: AppTheme.primary,
selectedMonthBackgroundColor: AppTheme.primary,
unselectedMonthTextColor: AppTheme.primary,
// headerColor: AppTheme.primary,
// selectedMonthStyle: TextStyle(color: AppTheme.primary),
// unselectedMonthTextColor: AppTheme.primary,
confirmWidget: const Text(
'OK',
style: TextStyle(color: AppTheme.primary),
Expand Down
Loading

0 comments on commit 1829b3b

Please sign in to comment.