Skip to content

Commit

Permalink
Added buildTypes.debug for library modules
Browse files Browse the repository at this point in the history
  • Loading branch information
duy committed Aug 30, 2024
1 parent e14d0a2 commit 09ca7c0
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 9 deletions.
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {

}
}

compileOptions {
// https://developer.android.com/studio/write/java8-support
// For AGP 4.1+
Expand Down
8 changes: 6 additions & 2 deletions modules/common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ android {

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

}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
Expand Down
11 changes: 8 additions & 3 deletions modules/ncalc-editor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,19 @@ android {

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

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

lint {
disable 'MissingTranslation'
}
Expand Down
7 changes: 5 additions & 2 deletions modules/programming/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ android {

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

Expand Down
7 changes: 5 additions & 2 deletions modules/symja-evaluator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ android {

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
//minifyEnabled false
//proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
//minifyEnabled false
}
}
compileOptions {
Expand Down

0 comments on commit 09ca7c0

Please sign in to comment.