Commit d2e587c92137d81fa861378dc45a8fc59e1d7fc2
1 parent
6f236f64
修改混淆文件
Showing
14 changed files
with
12 additions
and
10 deletions
IMLib/build/outputs/aar/IMLib-debug.aar deleted
100644 → 0
No preview for this file type
IMLib/build/outputs/aar/IMLib-release.aar deleted
100644 → 0
No preview for this file type
app/build.gradle
| ... | ... | @@ -27,7 +27,7 @@ android { |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | dependencies { |
| 30 | - compile fileTree(dir: 'libs', include: ['*.jar']) | |
| 30 | + compile fileTree(include: ['*.jar'], dir: 'libs') | |
| 31 | 31 | compile project(':lib_cnchat3.0') |
| 32 | 32 | compile 'com.android.support:appcompat-v7:23.4.0' |
| 33 | 33 | compile 'com.android.support:design:23.4.0' | ... | ... |
lib_cnchat3.0/build.gradle
| ... | ... | @@ -31,8 +31,9 @@ android { |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | dependencies { |
| 34 | - compile fileTree(dir: 'libs', include: ['*.jar']) | |
| 34 | + compile fileTree(include: ['*.jar'], dir: 'libs') | |
| 35 | 35 | compile 'com.android.support:support-v4:21.0.0' |
| 36 | + compile files('libs/libcnliveutil.jar') | |
| 36 | 37 | } |
| 37 | 38 | |
| 38 | 39 | ext { | ... | ... |
lib_cnchat3.0/build/intermediates/bundles/release/libs/libcnliveutil.jar
No preview for this file type
lib_cnchat3.0/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
lib_cnchat3.0/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties
lib_cnchat3.0/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
lib_cnchat3.0/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties
lib_cnchat3.0/build/intermediates/jniLibs/release/libcnliveutil.jar
No preview for this file type
lib_cnchat3.0/build/intermediates/res/resources-debug-androidTest.ap_
No preview for this file type
lib_cnchat3.0/libs/libcnliveutil.jar
No preview for this file type
lib_cnchat3.0/proguard-rules.pro
| ... | ... | @@ -47,9 +47,10 @@ |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | # 通用混淆配置 End |
| 50 | - -keep interface io.rong.imlib.base.**{*;} | |
| 51 | - -keep class io.rong.imlib.model.**{*;} | |
| 52 | - -keep class io.rong.imlib.receiver{*;} | |
| 50 | + -keep interface com.cnlive.libs.chat.base.**{*;} | |
| 51 | + -keep class com.cnlive.libs.chat.model.**{*;} | |
| 52 | + -keep class com.cnlive.libs.chat.receiver{*;} | |
| 53 | + -keep class com.cnlive.libs.chat.ChatUtil.** | |
| 53 | 54 | |
| 54 | 55 | # RongCloud SDK |
| 55 | 56 | -keep class io.rong.** {*;} | ... | ... |