Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/Android-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:
- uses: gradle/actions/wrapper-validation@v4
- name: Install Android SDK
uses: hannesa2/action-android/install-sdk@0.1.16.7
- name: Build release
run: ./gradlew assemble
- name: Run instrumentation tests
uses: hannesa2/action-android/emulator-run-cmd@0.1.16.7
with:
Expand Down
3 changes: 1 addition & 2 deletions MPChartLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
// https://issuetracker.google.com/issues/158695880
buildConfigField 'String', 'VERSION_NAME', "\"${getTag()}\""

consumerProguardFiles 'proguard-project.txt'
consumerProguardFiles 'proguard-lib.pro'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
Expand All @@ -34,7 +34,6 @@ android {
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
-keep class com.github.mikephil.charting.** { *; }
-keep public class com.github.mikephil.charting.animation.* {
public protected *;
}
}
Loading