Skip to content

Commit

Permalink
Fix rx proguard. Bump version to 2.6.7-p1/1.0.2-p1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedre committed Oct 24, 2015
1 parent 8393829 commit 5ce5cc0
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ Open Source Projects Used

Changelog
---------
**version 2.6.7-p1 (released 10/24/2015)**
- fix audio manager launch crash due to rx proguard issue.

**version 2.6.7 (released 10/24/2015)**
- only use uthmani font on apis 18 and above.
- better handling for landscape audio highlighting.
Expand Down
12 changes: 6 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 2670
versionName "2.6.7"
versionCode 2671
versionName "2.6.7-p1"
}

signingConfigs {
Expand All @@ -35,15 +35,15 @@ android {
qaloon {
applicationId "com.quran.labs.androidquran.qaloon"
resValue "string", "authority", applicationId + '.data.QuranDataProvider'
versionCode 1020
versionName "1.0.2"
versionCode 1021
versionName "1.0.2-p1"
}

naskh {
applicationId "com.quran.labs.androidquran.naskh"
resValue "string", "authority", applicationId + '.data.QuranDataProvider'
versionCode 1020
versionName "1.0.2"
versionCode 1021
versionName "1.0.2-p1"
}
}

Expand Down
13 changes: 13 additions & 0 deletions app/proguard.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,16 @@

# don't warn for okio errors
-dontwarn okio.**

# rxjava
-dontwarn sun.misc.**

-keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* {
long producerIndex;
long consumerIndex;
}

-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef {
long producerNode;
long consumerNode;
}

0 comments on commit 5ce5cc0

Please sign in to comment.