From 169b32095b47db75fee09d1a341ae2afadb5a6cb Mon Sep 17 00:00:00 2001 From: Kevin Coughlin Date: Sat, 19 Aug 2023 16:27:07 -0700 Subject: [PATCH] Updates --- Smodr/build.gradle | 8 ++++---- Smodr/proguard-rules.txt | 14 +++++++++++++- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Smodr/build.gradle b/Smodr/build.gradle index 567f0cc3..4952438c 100644 --- a/Smodr/build.gradle +++ b/Smodr/build.gradle @@ -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' @@ -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' diff --git a/Smodr/proguard-rules.txt b/Smodr/proguard-rules.txt index c423b03c..228af0f0 100644 --- a/Smodr/proguard-rules.txt +++ b/Smodr/proguard-rules.txt @@ -14,4 +14,16 @@ # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; -#} \ No newline at end of file +#} + +-keep class com.tickaroo.tikxml.** { *; } +-keep @com.tickaroo.tikxml.annotation.Xml public class * +-keep class **$$TypeAdapter { *; } + +-keepclasseswithmembernames class * { + @com.tickaroo.tikxml.* ; +} + +-keepclasseswithmembernames class * { + @com.tickaroo.tikxml.* ; +} \ No newline at end of file