简体中文
WuKongIM Android SDK 集成和初始化配置指南
implementation implementation 'com.github.WuKongIM:WuKongIMAndroidSDK:version' // 版本号请看上面
build.gradle
allprojects { repositories { ... maven { url 'https://jitpack.io' } } }
implementation "net.zetetic:android-database-sqlcipher:4.5.3" implementation "androidx.sqlite:sqlite-ktx:2.3.1" implementation 'org.whispersystems:curve25519-android:0.5.0' implementation 'org.whispersystems:signal-protocol-android:2.8.1'
-dontwarn com.xinbida.wukongim.** -keep class com.xinbida.wukongim.**{*;} #数据库加密 -keep,includedescriptorclasses class net.sqlcipher.** { *; } -keep,includedescriptorclasses interface net.sqlcipher.** { *; } #--------- 混淆dh curve25519------- -keep class org.whispersystems.curve25519.**{*;} -keep class org.whispersystems.** { *; } -keep class org.thoughtcrime.securesms.** { *; }