Skip to content

Commit

Permalink
Remove the release build type from the demo module to fix a build iss…
Browse files Browse the repository at this point in the history
…ue with Retrofit and R8 (#1074)
  • Loading branch information
tdchow authored Jul 19, 2024
1 parent 556ec64 commit e8e0b2a
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions Demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,12 @@ android {
keyAlias 'androiddebugkey'
keyPassword 'android'
}
release {
storeFile file(System.env['KEYSTORE_FILE'] ?: 'debug.keystore')
storePassword System.env['KEYSTORE_PASSWORD'] ?: 'android'
keyAlias System.env['KEY_ALIAS'] ?: 'androiddebugkey'
keyPassword System.env['KEY_PASSWORD'] ?: 'android'
}
}

buildTypes {
debug {
signingConfig signingConfigs.debug
}
release {
signingConfig signingConfigs.release
}
}

buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.pro'
}
}

lintOptions {
Expand Down

0 comments on commit e8e0b2a

Please sign in to comment.