Skip to content

Commit

Permalink
fix: unsigned apk when executed assembleRelease
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxGalaxy committed Sep 9, 2023
1 parent 11d1f08 commit bd2f04f
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,6 @@ android {
versionCode 1
versionName "1.0-Snapshot-" + getCommitHash()
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
Expand Down Expand Up @@ -100,6 +90,17 @@ android {
}
}
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
debug {
debuggable true
}
}
}

dependencies {
Expand Down

0 comments on commit bd2f04f

Please sign in to comment.