Skip to content

Commit 6c74b75

Browse files
committed
chore: android environment modify
1 parent 52c5c98 commit 6c74b75

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
lines changed

android/app/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ android {
2828
targetSdk = flutter.targetSdkVersion
2929
versionCode = flutter.versionCode
3030
versionName = flutter.versionName
31+
manifestPlaceholders = [
32+
appAuthRedirectScheme: "com.ontime.app"
33+
]
3134
}
3235

3336
buildTypes {

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >
22
<application
33
android:label="on_time_front"
4-
android:name="${applicationName}"
4+
android:name="on_time"
55
android:icon="@mipmap/ic_launcher">
66
<activity
77
android:name=".MainActivity"

android/build.gradle

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,18 @@ subprojects {
1616
tasks.register("clean", Delete) {
1717
delete rootProject.buildDir
1818
}
19+
20+
buildscript {
21+
repositories {
22+
google()
23+
mavenCentral()
24+
}
25+
26+
}
27+
28+
allprojects {
29+
repositories {
30+
google()
31+
mavenCentral()
32+
}
33+
}

android/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
22
android.useAndroidX=true
33
android.enableJetifier=true
4+
android.suppressUnsupportedCompileSdk=35

pubspec.lock

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -463,14 +463,6 @@ packages:
463463
description: flutter
464464
source: sdk
465465
version: "0.0.0"
466-
flutter_web_auth:
467-
dependency: "direct main"
468-
description:
469-
name: flutter_web_auth
470-
sha256: "95e4856e24fb6ac1678f5ff334743b63f782d839ab324543d29ccbd295176209"
471-
url: "https://pub.dev"
472-
source: hosted
473-
version: "0.6.0"
474466
flutter_web_plugins:
475467
dependency: transitive
476468
description: flutter

pubspec.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,10 @@ dependencies:
5252
uuid: ^4.5.1
5353
flutter_svg: ^2.0.14
5454

55-
google_sign_in: ^6.2.2
5655
kakao_flutter_sdk_user: ^1.9.6
5756
http: ^1.2.2
5857
url_launcher: ^6.3.1
5958
shared_preferences: ^2.3.3
60-
flutter_web_auth: ^0.6.0
6159
kakao_flutter_sdk: ^1.9.6
6260
flutter_appauth: ^8.0.1
6361
go_router: ^14.6.2
@@ -73,6 +71,7 @@ dependencies:
7371
flutter_background: ^1.3.0+1
7472
intl: ^0.20.1
7573
dotted_line: ^3.2.3
74+
google_sign_in: ^6.2.2
7675

7776

7877

0 commit comments

Comments
 (0)