Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinTCoughlin committed Aug 19, 2023
1 parent 9c0fda5 commit 169b320
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Smodr/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ buildscript {
repositories {
google()
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.0-alpha16'
Expand Down Expand Up @@ -80,12 +83,9 @@ dependencies {
api 'com.squareup.okhttp:okhttp-urlconnection:2.7.5'
api 'com.squareup.retrofit:retrofit:1.9.0'
implementation 'com.tickaroo.tikxml:annotation:0.8.13'
//noinspection GradleDependency
implementation 'com.tickaroo.tikxml:core:0.8.13'
//noinspection GradleDependency
annotationProcessor 'com.tickaroo.tikxml:processor:0.8.13'
//noinspection GradleDependency
implementation 'com.tickaroo.tikxml:retrofit-converter:0.8.13'
annotationProcessor 'com.tickaroo.tikxml:processor:0.8.13'
implementation 'com.google.firebase:firebase-core:21.1.1'
implementation 'com.google.firebase:firebase-analytics:21.3.0'
implementation 'com.google.firebase:firebase-crashlytics:18.4.0'
Expand Down
14 changes: 13 additions & 1 deletion Smodr/proguard-rules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,16 @@
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
#}

-keep class com.tickaroo.tikxml.** { *; }
-keep @com.tickaroo.tikxml.annotation.Xml public class *
-keep class **$$TypeAdapter { *; }

-keepclasseswithmembernames class * {
@com.tickaroo.tikxml.* <fields>;
}

-keepclasseswithmembernames class * {
@com.tickaroo.tikxml.* <methods>;
}

0 comments on commit 169b320

Please sign in to comment.