File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
src/main/kotlin/com/perol/pixez Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,12 @@ android {
84
84
applicationId packageName
85
85
minSdkVersion 21
86
86
targetSdkVersion 30
87
- versionCode 10005011
88
- versionName " 0.5.1 sflag"
87
+ versionCode 10005015
88
+ versionName " 0.5.2 X"
89
+ ndk {
90
+ // Filter for architectures supported by Flutter.
91
+ abiFilters ' armeabi-v7a' , ' arm64-v8a' , ' x86_64'
92
+ }
89
93
}
90
94
compileOptions {
91
95
sourceCompatibility JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change @@ -27,8 +27,6 @@ class PixEz : FlutterApplication() {
27
27
return
28
28
}
29
29
super .onCreate()
30
-
31
30
CrashHandler .instance?.init (applicationContext)
32
-
33
31
}
34
32
}
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
buildscript {
18
- ext. kotlin_version = ' 1.4.32 '
18
+ ext. kotlin_version = ' 1.5.0 '
19
19
20
20
repositories {
21
21
maven { url ' https://maven.aliyun.com/repository/public/' }
@@ -27,7 +27,7 @@ buildscript {
27
27
}
28
28
29
29
dependencies {
30
- classpath ' com.android.tools.build:gradle:4.2.0 '
30
+ classpath ' com.android.tools.build:gradle:4.2.1 '
31
31
classpath ' com.google.gms:google-services:4.3.5'
32
32
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
33
33
}
@@ -39,7 +39,7 @@ allprojects {
39
39
maven { url ' https://maven.aliyun.com/repository/public/' }
40
40
maven { url ' https://maven.aliyun.com/repository/google' }
41
41
maven { url ' https://maven.aliyun.com/repository/central' }
42
- maven { url ' https://maven.aliyun.com/repository/jcenter' }
42
+ // maven { url 'https://maven.aliyun.com/repository/jcenter' }
43
43
maven { url " https://jitpack.io" }
44
44
mavenCentral()
45
45
}
Original file line number Diff line number Diff line change 15
15
#
16
16
17
17
org.gradle.jvmargs =-Xmx1536M
18
- android.enableR8 =true
19
18
android.useAndroidX =true
20
19
android.enableJetifier =true
21
20
You can’t perform that action at this time.
0 commit comments