Skip to content

Commit

Permalink
Build fixes and version bump (3.4.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
corcoran committed Nov 20, 2019
1 parent 53cbff3 commit 4853a00
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'


def keystorePropertiesFile = rootProject.file("key.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
Expand All @@ -22,8 +21,8 @@ android {
applicationId "ca.mimic.hangar"
minSdkVersion 21
targetSdkVersion 28
versionCode 33001
versionName "3.3.1"
versionCode 34000
versionName "3.4.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand All @@ -44,7 +43,10 @@ android {
abortOnError false
}
packagingOptions {
pickFirst 'lib/armeabi-v7a/libflutter.so'
pickFirst 'lib/armeabi-v7a/libapp.so'
pickFirst 'lib/arm64-v8a/libapp.so'
pickFirst 'lib/x86/libapp.so'
pickFirst 'lib/x86_64/libapp.so'
}
}

Expand Down

0 comments on commit 4853a00

Please sign in to comment.