Skip to content

Commit f586084

Browse files
committed
upgrade lib
1 parent 8d18a55 commit f586084

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

android/app/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,12 @@ android {
8484
applicationId packageName
8585
minSdkVersion 21
8686
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+
}
8993
}
9094
compileOptions {
9195
sourceCompatibility JavaVersion.VERSION_1_8

android/app/src/main/kotlin/com/perol/pixez/PixEz.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ class PixEz : FlutterApplication() {
2727
return
2828
}
2929
super.onCreate()
30-
3130
CrashHandler.instance?.init(applicationContext)
32-
3331
}
3432
}

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
buildscript {
18-
ext.kotlin_version = '1.4.32'
18+
ext.kotlin_version = '1.5.0'
1919

2020
repositories {
2121
maven { url 'https://maven.aliyun.com/repository/public/' }
@@ -27,7 +27,7 @@ buildscript {
2727
}
2828

2929
dependencies {
30-
classpath 'com.android.tools.build:gradle:4.2.0'
30+
classpath 'com.android.tools.build:gradle:4.2.1'
3131
classpath 'com.google.gms:google-services:4.3.5'
3232
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
3333
}
@@ -39,7 +39,7 @@ allprojects {
3939
maven { url 'https://maven.aliyun.com/repository/public/' }
4040
maven { url 'https://maven.aliyun.com/repository/google' }
4141
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' }
4343
maven { url "https://jitpack.io" }
4444
mavenCentral()
4545
}

android/gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#
1616

1717
org.gradle.jvmargs=-Xmx1536M
18-
android.enableR8=true
1918
android.useAndroidX=true
2019
android.enableJetifier=true
2120

0 commit comments

Comments
 (0)