Commit 9166b6730c6040af541975d626a7e6f0f2d88ddf

Authored by 王琳
1 parent d2e587c9

将lib_cnchat3.0迁移到cnlivesdk工程中

Showing 100 changed files with 83 additions and 777 deletions

Too many changes to show.

To preserve performance only 100 of 103 files are displayed.

app/build.gradle
@@ -17,9 +17,6 @@ android { @@ -17,9 +17,6 @@ android {
17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18 } 18 }
19 } 19 }
20 - sourceSets {  
21 - main.jniLibs.srcDirs = ['libs']  
22 - }  
23 dexOptions { 20 dexOptions {
24 maxProcessCount 4 21 maxProcessCount 4
25 javaMaxHeapSize "2g" 22 javaMaxHeapSize "2g"
@@ -28,7 +25,7 @@ android { @@ -28,7 +25,7 @@ android {
28 25
29 dependencies { 26 dependencies {
30 compile fileTree(include: ['*.jar'], dir: 'libs') 27 compile fileTree(include: ['*.jar'], dir: 'libs')
31 - compile project(':lib_cnchat3.0') 28 +// compile project(':lib_cnchat3.0')
32 compile 'com.android.support:appcompat-v7:23.4.0' 29 compile 'com.android.support:appcompat-v7:23.4.0'
33 compile 'com.android.support:design:23.4.0' 30 compile 'com.android.support:design:23.4.0'
34 } 31 }
app/libs/libcnlivechat.jar 0 → 100644
No preview for this file type
lib_cnchat3.0/build/intermediates/bundles/release/libs/libcnliveutil.jar renamed to app/libs/libcnliveutil.jar
No preview for this file type
app/src/main/AndroidManifest.xml
@@ -2,7 +2,18 @@ @@ -2,7 +2,18 @@
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.cnlive.chat"> 3 package="com.cnlive.chat">
4 4
  5 + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
5 <uses-permission android:name="android.permission.INTERNET" /> 6 <uses-permission android:name="android.permission.INTERNET" />
  7 + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  8 + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  9 + <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  10 + <uses-permission android:name="android.permission.RECORD_AUDIO" />
  11 + <uses-permission android:name="android.permission.GET_TASKS" />
  12 + <uses-permission android:name="android.permission.WAKE_LOCK" />
  13 + <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
  14 + <uses-permission android:name="android.permission.VIBRATE" />
  15 + <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  16 + <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
6 17
7 <application 18 <application
8 android:name=".CNLiveApplication" 19 android:name=".CNLiveApplication"
@@ -51,6 +62,74 @@ @@ -51,6 +62,74 @@
51 </intent-filter> 62 </intent-filter>
52 </receiver> 63 </receiver>
53 64
  65 + <!-- com.cnlive.libs.chat config begin -->
  66 + <meta-data
  67 + android:name="RONG_CLOUD_APP_KEY"
  68 + android:value="此处添加APP_KEY" />
  69 +
  70 + <service
  71 + android:name="io.rong.imlib.ipc.RongService"
  72 + android:exported="true"
  73 + android:process=":ipc" />
  74 +
  75 + <service
  76 + android:name="io.rong.imlib.ReConnectService"
  77 + android:exported="true" />
  78 +
  79 + <receiver
  80 + android:name="io.rong.imlib.ConnectChangeReceiver"
  81 + android:exported="true" />
  82 +
  83 + <receiver
  84 + android:name="io.rong.imlib.HeartbeatReceiver"
  85 + android:process=":ipc" />
  86 + <!-- com.cnlive.libs.chat config end -->
  87 +
  88 +
  89 + <!--必选: SDK 核心功能-->
  90 + <!--第三方相关,向第三方推送服务请求 token 的服务 -->
  91 + <service
  92 + android:name="io.rong.push.core.PushRegistrationService"
  93 + android:exported="false"></service>
  94 +
  95 + <!-- 处理 push 消息相关的服务 -->
  96 + <service
  97 + android:name="io.rong.push.core.MessageHandleService"
  98 + android:exported="true"></service>
  99 +
  100 + <!-- push服务 -->
  101 + <service
  102 + android:name="io.rong.push.PushService"
  103 + android:exported="true"
  104 + android:process="io.rong.push"> <!-- push进程,可以改名 -->
  105 + </service>
  106 +
  107 + <!-- push 相关事件接收器 -->
  108 + <receiver
  109 + android:name="io.rong.push.PushReceiver"
  110 + android:process="io.rong.push"> <!-- 此处进程可以改名,名称需要和PushService所在进程统一 -->
  111 + <!-- 心跳事件 -->
  112 + <intent-filter>
  113 + <action android:name="io.rong.push.intent.action.HEART_BEAT" />
  114 + </intent-filter>
  115 + <!-- 网络变动事件 -->
  116 + <intent-filter>
  117 + <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
  118 + </intent-filter>
  119 + <!-- 部分用户事件 -->
  120 + <intent-filter>
  121 + <action android:name="android.intent.action.BOOT_COMPLETED" />
  122 + </intent-filter>
  123 + <intent-filter>
  124 + <action android:name="android.intent.action.USER_PRESENT" />
  125 + <action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
  126 + <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
  127 + </intent-filter>
  128 + </receiver>
  129 +
  130 + <!--必选: SDK 核心功能-->
  131 +
  132 + <!-- end -->
54 </application> 133 </application>
55 134
56 </manifest> 135 </manifest>
57 \ No newline at end of file 136 \ No newline at end of file
lib_cnchat3.0/build/intermediates/bundles/release/jni/arm64-v8a/libRongIMLib.so renamed to app/src/main/jniLibs/arm64-v8a/libRongIMLib.so
No preview for this file type
lib_cnchat3.0/build/intermediates/bundles/release/jni/armeabi-v7a/libRongIMLib.so renamed to app/src/main/jniLibs/armeabi-v7a/libRongIMLib.so
No preview for this file type
lib_cnchat3.0/build/intermediates/bundles/release/jni/armeabi/libRongIMLib.so renamed to app/src/main/jniLibs/armeabi/libRongIMLib.so
No preview for this file type
lib_cnchat3.0/build/intermediates/bundles/release/jni/x86/libRongIMLib.so renamed to app/src/main/jniLibs/x86/libRongIMLib.so
No preview for this file type
lib_cnchat3.0/build.gradle
@@ -33,7 +33,6 @@ android { @@ -33,7 +33,6 @@ android {
33 dependencies { 33 dependencies {
34 compile fileTree(include: ['*.jar'], dir: 'libs') 34 compile fileTree(include: ['*.jar'], dir: 'libs')
35 compile 'com.android.support:support-v4:21.0.0' 35 compile 'com.android.support:support-v4:21.0.0'
36 - compile files('libs/libcnliveutil.jar')  
37 } 36 }
38 37
39 ext { 38 ext {
lib_cnchat3.0/build/generated/source/buildConfig/release/com/cnlive/libs/chat/BuildConfig.java deleted 100644 → 0
1 -/**  
2 - * Automatically generated file. DO NOT MODIFY  
3 - */  
4 -package com.cnlive.libs.chat;  
5 -  
6 -public final class BuildConfig {  
7 - public static final boolean DEBUG = false;  
8 - public static final String APPLICATION_ID = "com.cnlive.libs.chat";  
9 - public static final String BUILD_TYPE = "release";  
10 - public static final String FLAVOR = "";  
11 - public static final int VERSION_CODE = 1;  
12 - public static final String VERSION_NAME = "1.0";  
13 -}  
lib_cnchat3.0/build/generated/source/r/release/com/cnlive/libs/chat/R.java deleted 100644 → 0
1 -/* AUTO-GENERATED FILE. DO NOT MODIFY.  
2 - *  
3 - * This class was automatically generated by the  
4 - * aapt tool from the resource data it found. It  
5 - * should not be modified by hand.  
6 - */  
7 -  
8 -package com.cnlive.libs.chat;  
9 -  
10 -public final class R {  
11 - public static final class attr {  
12 - }  
13 - public static final class bool {  
14 - public static int rc_extension_history=0x7f030000;  
15 - public static int rc_typing_status=0x7f030001;  
16 - }  
17 - public static final class integer {  
18 - public static int rc_audio_encoding_bit_rate=0x7f040000;  
19 - public static int rc_image_quality=0x7f040001;  
20 - public static int rc_image_size=0x7f040002;  
21 - }  
22 - public static final class string {  
23 - public static int rc_init_failed=0x7f020000;  
24 - public static int rc_location_sharing_ended=0x7f020001;  
25 - public static int rc_media_message_default_save_path=0x7f020006;  
26 - public static int rc_notification_new_msg=0x7f020002;  
27 - public static int rc_notification_new_plural_msg=0x7f020003;  
28 - public static int rc_notification_ticker_text=0x7f020004;  
29 - public static int rc_quit_custom_service=0x7f020005;  
30 - }  
31 -}  
lib_cnchat3.0/build/intermediates/blame/res/release/multi/values-en.json deleted 100644 → 0
1 -[  
2 - {  
3 - "outputFile": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\build\\intermediates\\incremental\\mergeReleaseResources\\merged.dir\\values-en\\values-en.xml",  
4 - "map": [  
5 - {  
6 - "to": {  
7 - "startLine": 2,  
8 - "startColumn": 4,  
9 - "startOffset": 55,  
10 - "endColumn": 72,  
11 - "endOffset": 123  
12 - },  
13 - "from": {  
14 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-en\\rc_string.xml",  
15 - "position": {  
16 - "startLine": 4,  
17 - "startColumn": 4,  
18 - "startOffset": 132,  
19 - "endColumn": 72,  
20 - "endOffset": 200  
21 - }  
22 - }  
23 - },  
24 - {  
25 - "to": {  
26 - "startLine": 3,  
27 - "startColumn": 4,  
28 - "startOffset": 128,  
29 - "endColumn": 87,  
30 - "endOffset": 211  
31 - },  
32 - "from": {  
33 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-en\\rc_string.xml",  
34 - "position": {  
35 - "startLine": 5,  
36 - "startColumn": 4,  
37 - "startOffset": 205,  
38 - "endColumn": 87,  
39 - "endOffset": 288  
40 - }  
41 - }  
42 - },  
43 - {  
44 - "to": {  
45 - "startLine": 4,  
46 - "startColumn": 4,  
47 - "startOffset": 216,  
48 - "endColumn": 75,  
49 - "endOffset": 287  
50 - },  
51 - "from": {  
52 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-en\\rc_string.xml",  
53 - "position": {  
54 - "startLine": 9,  
55 - "startColumn": 4,  
56 - "startOffset": 374,  
57 - "endColumn": 90,  
58 - "endOffset": 460  
59 - }  
60 - }  
61 - },  
62 - {  
63 - "to": {  
64 - "startLine": 5,  
65 - "startColumn": 4,  
66 - "startOffset": 292,  
67 - "endColumn": 91,  
68 - "endOffset": 379  
69 - },  
70 - "from": {  
71 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-en\\rc_string.xml",  
72 - "position": {  
73 - "startLine": 10,  
74 - "startColumn": 4,  
75 - "startOffset": 465,  
76 - "endColumn": 111,  
77 - "endOffset": 572  
78 - }  
79 - }  
80 - },  
81 - {  
82 - "to": {  
83 - "startLine": 6,  
84 - "startColumn": 4,  
85 - "startOffset": 384,  
86 - "endColumn": 78,  
87 - "endOffset": 458  
88 - },  
89 - "from": {  
90 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-en\\rc_string.xml",  
91 - "position": {  
92 - "startLine": 7,  
93 - "startColumn": 4,  
94 - "startOffset": 294,  
95 - "endColumn": 78,  
96 - "endOffset": 368  
97 - }  
98 - }  
99 - },  
100 - {  
101 - "to": {  
102 - "startLine": 7,  
103 - "startColumn": 4,  
104 - "startOffset": 463,  
105 - "endColumn": 75,  
106 - "endOffset": 534  
107 - },  
108 - "from": {  
109 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-en\\rc_string.xml",  
110 - "position": {  
111 - "startLine": 3,  
112 - "startColumn": 4,  
113 - "startOffset": 56,  
114 - "endColumn": 75,  
115 - "endOffset": 127  
116 - }  
117 - }  
118 - }  
119 - ]  
120 - }  
121 -]  
122 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/blame/res/release/multi/values-sw.json deleted 100644 → 0
1 -[  
2 - {  
3 - "outputFile": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\build\\intermediates\\incremental\\mergeReleaseResources\\merged.dir\\values-sw\\values-sw.xml",  
4 - "map": [  
5 - {  
6 - "to": {  
7 - "startLine": 2,  
8 - "startColumn": 4,  
9 - "startOffset": 55,  
10 - "endColumn": 77,  
11 - "endOffset": 128  
12 - },  
13 - "from": {  
14 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-sw\\rc_notification_string.xml",  
15 - "position": {  
16 - "startLine": 4,  
17 - "startColumn": 4,  
18 - "startOffset": 133,  
19 - "endColumn": 92,  
20 - "endOffset": 221  
21 - }  
22 - }  
23 - },  
24 - {  
25 - "to": {  
26 - "startLine": 3,  
27 - "startColumn": 4,  
28 - "startOffset": 133,  
29 - "endColumn": 93,  
30 - "endOffset": 222  
31 - },  
32 - "from": {  
33 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-sw\\rc_notification_string.xml",  
34 - "position": {  
35 - "startLine": 5,  
36 - "startColumn": 4,  
37 - "startOffset": 226,  
38 - "endColumn": 108,  
39 - "endOffset": 330  
40 - }  
41 - }  
42 - },  
43 - {  
44 - "to": {  
45 - "startLine": 4,  
46 - "startColumn": 4,  
47 - "startOffset": 227,  
48 - "endColumn": 76,  
49 - "endOffset": 299  
50 - },  
51 - "from": {  
52 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values-sw\\rc_notification_string.xml",  
53 - "position": {  
54 - "startLine": 3,  
55 - "startColumn": 4,  
56 - "startOffset": 56,  
57 - "endColumn": 76,  
58 - "endOffset": 128  
59 - }  
60 - }  
61 - }  
62 - ]  
63 - }  
64 -]  
65 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/blame/res/release/multi/values.json deleted 100644 → 0
1 -[  
2 - {  
3 - "outputFile": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\build\\intermediates\\incremental\\mergeReleaseResources\\merged.dir\\values\\values.xml",  
4 - "map": [  
5 - {  
6 - "to": {  
7 - "startLine": 2,  
8 - "startColumn": 4,  
9 - "startOffset": 55,  
10 - "endColumn": 50,  
11 - "endOffset": 101  
12 - },  
13 - "from": {  
14 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_configuration.xml",  
15 - "position": {  
16 - "startLine": 14,  
17 - "startColumn": 4,  
18 - "startOffset": 490,  
19 - "endColumn": 50,  
20 - "endOffset": 536  
21 - }  
22 - }  
23 - },  
24 - {  
25 - "to": {  
26 - "startLine": 3,  
27 - "startColumn": 4,  
28 - "startOffset": 106,  
29 - "endColumn": 46,  
30 - "endOffset": 148  
31 - },  
32 - "from": {  
33 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_configuration.xml",  
34 - "position": {  
35 - "startLine": 10,  
36 - "startColumn": 4,  
37 - "startOffset": 305,  
38 - "endColumn": 46,  
39 - "endOffset": 347  
40 - }  
41 - }  
42 - },  
43 - {  
44 - "to": {  
45 - "startLine": 4,  
46 - "startColumn": 4,  
47 - "startOffset": 153,  
48 - "endColumn": 61,  
49 - "endOffset": 210  
50 - },  
51 - "from": {  
52 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_configuration.xml",  
53 - "position": {  
54 - "startLine": 3,  
55 - "startColumn": 4,  
56 - "startOffset": 85,  
57 - "endColumn": 61,  
58 - "endOffset": 142  
59 - }  
60 - }  
61 - },  
62 - {  
63 - "to": {  
64 - "startLine": 5,  
65 - "startColumn": 4,  
66 - "startOffset": 215,  
67 - "endColumn": 49,  
68 - "endOffset": 260  
69 - },  
70 - "from": {  
71 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_configuration.xml",  
72 - "position": {  
73 - "startLine": 6,  
74 - "startColumn": 4,  
75 - "startOffset": 166,  
76 - "endColumn": 49,  
77 - "endOffset": 211  
78 - }  
79 - }  
80 - },  
81 - {  
82 - "to": {  
83 - "startLine": 6,  
84 - "startColumn": 4,  
85 - "startOffset": 265,  
86 - "endColumn": 47,  
87 - "endOffset": 308  
88 - },  
89 - "from": {  
90 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_configuration.xml",  
91 - "position": {  
92 - "startLine": 8,  
93 - "startColumn": 4,  
94 - "startOffset": 235,  
95 - "endColumn": 47,  
96 - "endOffset": 278  
97 - }  
98 - }  
99 - },  
100 - {  
101 - "to": {  
102 - "startLine": 7,  
103 - "startColumn": 4,  
104 - "startOffset": 313,  
105 - "endColumn": 49,  
106 - "endOffset": 358  
107 - },  
108 - "from": {  
109 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_lib_string.xml",  
110 - "position": {  
111 - "startLine": 4,  
112 - "startColumn": 4,  
113 - "startOffset": 113,  
114 - "endColumn": 49,  
115 - "endOffset": 158  
116 - }  
117 - }  
118 - },  
119 - {  
120 - "to": {  
121 - "startLine": 8,  
122 - "startColumn": 4,  
123 - "startOffset": 363,  
124 - "endColumn": 61,  
125 - "endOffset": 420  
126 - },  
127 - "from": {  
128 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_lib_string.xml",  
129 - "position": {  
130 - "startLine": 5,  
131 - "startColumn": 4,  
132 - "startOffset": 163,  
133 - "endColumn": 61,  
134 - "endOffset": 220  
135 - }  
136 - }  
137 - },  
138 - {  
139 - "to": {  
140 - "startLine": 9,  
141 - "startColumn": 4,  
142 - "startOffset": 425,  
143 - "endColumn": 80,  
144 - "endOffset": 501  
145 - },  
146 - "from": {  
147 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_configuration.xml",  
148 - "position": {  
149 - "startLine": 12,  
150 - "startColumn": 4,  
151 - "startOffset": 376,  
152 - "endColumn": 80,  
153 - "endOffset": 452  
154 - }  
155 - }  
156 - },  
157 - {  
158 - "to": {  
159 - "startLine": 10,  
160 - "startColumn": 4,  
161 - "startOffset": 506,  
162 - "endColumn": 66,  
163 - "endOffset": 568  
164 - },  
165 - "from": {  
166 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_lib_string.xml",  
167 - "position": {  
168 - "startLine": 8,  
169 - "startColumn": 4,  
170 - "startOffset": 291,  
171 - "endColumn": 66,  
172 - "endOffset": 353  
173 - }  
174 - }  
175 - },  
176 - {  
177 - "to": {  
178 - "startLine": 11,  
179 - "startColumn": 4,  
180 - "startOffset": 573,  
181 - "endColumn": 77,  
182 - "endOffset": 646  
183 - },  
184 - "from": {  
185 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_lib_string.xml",  
186 - "position": {  
187 - "startLine": 9,  
188 - "startColumn": 4,  
189 - "startOffset": 358,  
190 - "endColumn": 77,  
191 - "endOffset": 431  
192 - }  
193 - }  
194 - },  
195 - {  
196 - "to": {  
197 - "startLine": 12,  
198 - "startColumn": 4,  
199 - "startOffset": 651,  
200 - "endColumn": 64,  
201 - "endOffset": 711  
202 - },  
203 - "from": {  
204 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_lib_string.xml",  
205 - "position": {  
206 - "startLine": 7,  
207 - "startColumn": 4,  
208 - "startOffset": 226,  
209 - "endColumn": 64,  
210 - "endOffset": 286  
211 - }  
212 - }  
213 - },  
214 - {  
215 - "to": {  
216 - "startLine": 13,  
217 - "startColumn": 4,  
218 - "startOffset": 716,  
219 - "endColumn": 56,  
220 - "endOffset": 768  
221 - },  
222 - "from": {  
223 - "file": "E:\\testspace\\ChatDemo\\lib_cnchat3.0\\res\\values\\rc_lib_string.xml",  
224 - "position": {  
225 - "startLine": 3,  
226 - "startColumn": 4,  
227 - "startOffset": 56,  
228 - "endColumn": 56,  
229 - "endOffset": 108  
230 - }  
231 - }  
232 - }  
233 - ]  
234 - }  
235 -]  
236 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/bundles/release/AndroidManifest.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<manifest xmlns:android="http://schemas.android.com/apk/res/android"  
3 - package="com.cnlive.libs.chat"  
4 - android:versionCode="1"  
5 - android:versionName="1.0" >  
6 -  
7 - <uses-sdk  
8 - android:minSdkVersion="9"  
9 - android:targetSdkVersion="19" />  
10 -  
11 - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />  
12 - <uses-permission android:name="android.permission.INTERNET" />  
13 - <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />  
14 - <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />  
15 - <uses-permission android:name="android.permission.READ_PHONE_STATE" />  
16 - <uses-permission android:name="android.permission.RECORD_AUDIO" />  
17 - <uses-permission android:name="android.permission.GET_TASKS" />  
18 - <uses-permission android:name="android.permission.WAKE_LOCK" />  
19 - <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />  
20 - <uses-permission android:name="android.permission.VIBRATE" />  
21 - <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />  
22 - <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />  
23 -  
24 - <application>  
25 -  
26 - <!-- com.cnlive.libs.chat config begin -->  
27 - <meta-data  
28 - android:name="RONG_CLOUD_APP_KEY"  
29 - android:value="此处添加APP_KEY" />  
30 -  
31 - <service  
32 - android:name="io.rong.imlib.ipc.RongService"  
33 - android:exported="true"  
34 - android:process=":ipc" />  
35 - <service  
36 - android:name="io.rong.imlib.ReConnectService"  
37 - android:exported="true" />  
38 -  
39 - <receiver  
40 - android:name="io.rong.imlib.ConnectChangeReceiver"  
41 - android:exported="true" />  
42 - <receiver  
43 - android:name="io.rong.imlib.HeartbeatReceiver"  
44 - android:process=":ipc" />  
45 - <!-- com.cnlive.libs.chat config end -->  
46 -  
47 -  
48 - <!-- 必选: SDK 核心功能 -->  
49 - <!-- 第三方相关,向第三方推送服务请求 token 的服务 -->  
50 - <service  
51 - android:name="io.rong.push.core.PushRegistrationService"  
52 - android:exported="false" />  
53 -  
54 - <!-- 处理 push 消息相关的服务 -->  
55 - <service  
56 - android:name="io.rong.push.core.MessageHandleService"  
57 - android:exported="true" />  
58 -  
59 - <!-- push服务 -->  
60 - <service  
61 - android:name="io.rong.push.PushService"  
62 - android:exported="true"  
63 - android:process="io.rong.push" > <!-- push进程,可以改名 -->  
64 - </service>  
65 -  
66 - <!-- push 相关事件接收器 -->  
67 - <receiver  
68 - android:name="io.rong.push.PushReceiver"  
69 - android:process="io.rong.push" > <!-- 此处进程可以改名,名称需要和PushService所在进程统一 -->  
70 - <!-- 心跳事件 -->  
71 - <intent-filter>  
72 - <action android:name="io.rong.push.intent.action.HEART_BEAT" />  
73 - </intent-filter>  
74 - <!-- 网络变动事件 -->  
75 - <intent-filter>  
76 - <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />  
77 - </intent-filter>  
78 - <!-- 部分用户事件 -->  
79 - <intent-filter>  
80 - <action android:name="android.intent.action.BOOT_COMPLETED" />  
81 - </intent-filter>  
82 - <intent-filter>  
83 - <action android:name="android.intent.action.USER_PRESENT" />  
84 - <action android:name="android.intent.action.ACTION_POWER_CONNECTED" />  
85 - <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />  
86 - </intent-filter>  
87 - </receiver>  
88 -  
89 - <!-- 必选: SDK 核心功能 -->  
90 -  
91 -  
92 - <!-- end -->  
93 - </application>  
94 -  
95 -</manifest>  
96 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/bundles/release/R.txt deleted 100644 → 0
1 -int bool rc_extension_history 0x7f030000  
2 -int bool rc_typing_status 0x7f030001  
3 -int integer rc_audio_encoding_bit_rate 0x7f040000  
4 -int integer rc_image_quality 0x7f040001  
5 -int integer rc_image_size 0x7f040002  
6 -int string rc_init_failed 0x7f020000  
7 -int string rc_location_sharing_ended 0x7f020001  
8 -int string rc_media_message_default_save_path 0x7f020006  
9 -int string rc_notification_new_msg 0x7f020002  
10 -int string rc_notification_new_plural_msg 0x7f020003  
11 -int string rc_notification_ticker_text 0x7f020004  
12 -int string rc_quit_custom_service 0x7f020005  
lib_cnchat3.0/build/intermediates/bundles/release/classes.jar deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/bundles/release/libs/Rong_IMLib.jar deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/BuildConfig.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$1.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$10.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$11.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$12.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$13.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$14.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$15.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$16.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$2.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$3.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$4.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$5.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$6.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$7.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$8.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat$9.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/Chat.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/ChatUtil.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/R$attr.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/R$bool.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/R$integer.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/R$string.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/R.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnCNChatListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnChatRoomActionListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnConnectListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnConnectStatusListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnLatestMessageListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnOperationListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnReceiveMessageListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnResultListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat$OnSendMessageListener.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/base/IChat.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/model/CNMessage.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/model/CNNotificationMessage$1.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/model/CNNotificationMessage.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/model/CNUserInfo.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/model/ConnectionStatus.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/model/DataEntity$TokenData.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/model/DataEntity.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/model/ErrorMessage.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/network/HttpRequest.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/network/HttpUtil$Header.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/network/HttpUtil$HttpAsyncTask.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/network/HttpUtil$OnResponse.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/network/HttpUtil$Response.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/network/HttpUtil.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/classes/release/com/cnlive/libs/chat/receiver/SealNotificationReceiver.class deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/incremental-safeguard/release/tag.txt deleted 100644 → 0
1 -incremental task execution  
2 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/compileReleaseAidl/dependency.store deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
1 -#Thu Mar 02 17:46:00 CST 2017 1 +#Thu Mar 02 18:34:46 CST 2017
lib_cnchat3.0/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
1 -#Thu Mar 02 17:46:00 CST 2017 1 +#Thu Mar 02 18:34:41 CST 2017
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseAssets/merger.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<merger version="3"><dataSet config="main"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\main\assets"/><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\assets\shaders\release"/></dataSet><dataSet config="release"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\release\assets"/></dataSet></merger>  
3 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<merger version="3"><dataSet config="main"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\libs"><file name="arm64-v8a/libRongIMLib.so" path="E:\testspace\ChatDemo\lib_cnchat3.0\libs\arm64-v8a\libRongIMLib.so"/><file name="armeabi/libRongIMLib.so" path="E:\testspace\ChatDemo\lib_cnchat3.0\libs\armeabi\libRongIMLib.so"/><file name="armeabi-v7a/libRongIMLib.so" path="E:\testspace\ChatDemo\lib_cnchat3.0\libs\armeabi-v7a\libRongIMLib.so"/><file name="libcnliveutil.jar" path="E:\testspace\ChatDemo\lib_cnchat3.0\libs\libcnliveutil.jar"/><file name="Rong_IMLib.jar" path="E:\testspace\ChatDemo\lib_cnchat3.0\libs\Rong_IMLib.jar"/><file name="x86/libRongIMLib.so" path="E:\testspace\ChatDemo\lib_cnchat3.0\libs\x86\libRongIMLib.so"/></source></dataSet><dataSet config="release"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\release\jniLibs"/></dataSet></merger>  
3 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties deleted 100644 → 0
1 -#Thu Mar 02 17:46:11 CST 2017  
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en/values-en.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <string name="rc_init_failed">Failed Connect Custom Service</string>  
4 - <string name="rc_location_sharing_ended">Real-time Location session ended.</string>  
5 - <string name="rc_notification_new_msg">%1$s sent %2$d messages</string>  
6 - <string name="rc_notification_new_plural_msg">%1$d contacts sent %2$d messages</string>  
7 - <string name="rc_notification_ticker_text">You have a new message</string>  
8 - <string name="rc_quit_custom_service">Custom Service Have Quit</string>  
9 -</resources>  
10 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw/values-sw.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <string name="rc_notification_new_msg">%1$s ametuma ujumbe  %2$d</string>  
4 - <string name="rc_notification_new_plural_msg">Mrafiki.%1$d wametuma ujumbe  %2$d</string>  
5 - <string name="rc_notification_ticker_text">Umepokea Ujumbe Mpya</string>  
6 -</resources>  
7 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <bool name="rc_extension_history">false</bool>  
4 - <bool name="rc_typing_status">false</bool>  
5 - <integer name="rc_audio_encoding_bit_rate">7950</integer>  
6 - <integer name="rc_image_quality">85</integer>  
7 - <integer name="rc_image_size">960</integer>  
8 - <string name="rc_init_failed">连接客服失败</string>  
9 - <string name="rc_location_sharing_ended">位置共享已结束</string>  
10 - <string name="rc_media_message_default_save_path">/RongCloud/Media/</string>  
11 - <string name="rc_notification_new_msg">%1$s发来了%2$d条消息</string>  
12 - <string name="rc_notification_new_plural_msg">%1$d个联系人发来了%2$d条消息</string>  
13 - <string name="rc_notification_ticker_text">您有了一条新消息</string>  
14 - <string name="rc_quit_custom_service">客服已结束</string>  
15 -</resources>  
16 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseResources/merger.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<merger version="3"><dataSet config="21.0.0$Generated" generated="true"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\intermediates\exploded-aar\com.android.support\support-v4\21.0.0\res"/></dataSet><dataSet config="main$Generated" generated="true"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\res"/><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\res\rs\release"/><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\res\resValues\release"/></dataSet><dataSet config="release$Generated" generated="true"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\release\res"/></dataSet><dataSet config="21.0.0" from-dependency="true" generated-set="21.0.0$Generated"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\intermediates\exploded-aar\com.android.support\support-v4\21.0.0\res"/></dataSet><dataSet config="main" generated-set="main$Generated"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\res"><file path="E:\testspace\ChatDemo\lib_cnchat3.0\res\values\rc_configuration.xml" qualifiers=""><bool name="rc_extension_history">false</bool><integer name="rc_image_size">960</integer><bool name="rc_typing_status">false</bool><string name="rc_media_message_default_save_path">/RongCloud/Media/</string><integer name="rc_image_quality">85</integer><integer name="rc_audio_encoding_bit_rate">7950</integer></file><file path="E:\testspace\ChatDemo\lib_cnchat3.0\res\values\rc_lib_string.xml" qualifiers=""><string name="rc_notification_new_plural_msg">%1$d个联系人发来了%2$d条消息</string><string name="rc_init_failed">连接客服失败</string><string name="rc_location_sharing_ended">位置共享已结束</string><string name="rc_notification_ticker_text">您有了一条新消息</string><string name="rc_notification_new_msg">%1$s发来了%2$d条消息</string><string name="rc_quit_custom_service">客服已结束</string></file><file path="E:\testspace\ChatDemo\lib_cnchat3.0\res\values-en\rc_string.xml" qualifiers="en"><string name="rc_notification_new_plural_msg">%1$d contacts sent %2$d messages</string><string name="rc_quit_custom_service">Custom Service Have Quit</string><string name="rc_location_sharing_ended">Real-time Location session ended.</string><string name="rc_notification_ticker_text">You have a new message</string><string name="rc_init_failed">Failed Connect Custom Service</string><string name="rc_notification_new_msg">%1$s sent %2$d messages</string></file><file path="E:\testspace\ChatDemo\lib_cnchat3.0\res\values-sw\rc_notification_string.xml" qualifiers="sw"><string name="rc_notification_ticker_text">Umepokea Ujumbe Mpya</string><string name="rc_notification_new_plural_msg">Mrafiki.%1$d wametuma ujumbe  %2$d</string><string name="rc_notification_new_msg">%1$s ametuma ujumbe  %2$d</string></file></source><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\res\rs\release"/><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\res\resValues\release"/></dataSet><dataSet config="release" generated-set="release$Generated"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\release\res"/></dataSet><mergedItems/></merger>  
3 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/mergeReleaseShaders/merger.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<merger version="3"><dataSet config="main"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\main\shaders"/></dataSet><dataSet config="release"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\release\shaders"/></dataSet></merger>  
3 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
1 -#Thu Mar 02 17:46:00 CST 2017 1 +#Thu Mar 02 18:34:46 CST 2017
lib_cnchat3.0/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties deleted 100644 → 0
1 -#Thu Mar 02 17:45:52 CST 2017  
lib_cnchat3.0/build/intermediates/incremental/packageReleaseResources/merged.dir/values-en/values-en.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <string name="rc_init_failed">Failed Connect Custom Service</string>  
4 - <string name="rc_location_sharing_ended">Real-time Location session ended.</string>  
5 - <string name="rc_notification_new_msg">%1$s sent %2$d messages</string>  
6 - <string name="rc_notification_new_plural_msg">%1$d contacts sent %2$d messages</string>  
7 - <string name="rc_notification_ticker_text">You have a new message</string>  
8 - <string name="rc_quit_custom_service">Custom Service Have Quit</string>  
9 -</resources>  
10 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/packageReleaseResources/merged.dir/values-sw/values-sw.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <string name="rc_notification_new_msg">%1$s ametuma ujumbe  %2$d</string>  
4 - <string name="rc_notification_new_plural_msg">Mrafiki.%1$d wametuma ujumbe  %2$d</string>  
5 - <string name="rc_notification_ticker_text">Umepokea Ujumbe Mpya</string>  
6 -</resources>  
7 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <bool name="rc_extension_history">false</bool>  
4 - <bool name="rc_typing_status">false</bool>  
5 - <integer name="rc_audio_encoding_bit_rate">7950</integer>  
6 - <integer name="rc_image_quality">85</integer>  
7 - <integer name="rc_image_size">960</integer>  
8 - <string name="rc_init_failed">连接客服失败</string>  
9 - <string name="rc_location_sharing_ended">位置共享已结束</string>  
10 - <string name="rc_media_message_default_save_path">/RongCloud/Media/</string>  
11 - <string name="rc_notification_new_msg">%1$s发来了%2$d条消息</string>  
12 - <string name="rc_notification_new_plural_msg">%1$d个联系人发来了%2$d条消息</string>  
13 - <string name="rc_notification_ticker_text">您有了一条新消息</string>  
14 - <string name="rc_quit_custom_service">客服已结束</string>  
15 -</resources>  
16 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/incremental/packageReleaseResources/merger.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<merger version="3"><dataSet config="main$Generated" generated="true"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\res"/><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\res\rs\release"/><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\res\resValues\release"/></dataSet><dataSet config="release$Generated" generated="true"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\release\res"/></dataSet><dataSet config="main" generated-set="main$Generated"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\res"><file path="E:\testspace\ChatDemo\lib_cnchat3.0\res\values\rc_configuration.xml" qualifiers=""><bool name="rc_extension_history">false</bool><integer name="rc_image_size">960</integer><bool name="rc_typing_status">false</bool><string name="rc_media_message_default_save_path">/RongCloud/Media/</string><integer name="rc_image_quality">85</integer><integer name="rc_audio_encoding_bit_rate">7950</integer></file><file path="E:\testspace\ChatDemo\lib_cnchat3.0\res\values\rc_lib_string.xml" qualifiers=""><string name="rc_notification_new_plural_msg">%1$d个联系人发来了%2$d条消息</string><string name="rc_init_failed">连接客服失败</string><string name="rc_location_sharing_ended">位置共享已结束</string><string name="rc_notification_ticker_text">您有了一条新消息</string><string name="rc_notification_new_msg">%1$s发来了%2$d条消息</string><string name="rc_quit_custom_service">客服已结束</string></file><file path="E:\testspace\ChatDemo\lib_cnchat3.0\res\values-en\rc_string.xml" qualifiers="en"><string name="rc_notification_new_plural_msg">%1$d contacts sent %2$d messages</string><string name="rc_quit_custom_service">Custom Service Have Quit</string><string name="rc_location_sharing_ended">Real-time Location session ended.</string><string name="rc_notification_ticker_text">You have a new message</string><string name="rc_init_failed">Failed Connect Custom Service</string><string name="rc_notification_new_msg">%1$s sent %2$d messages</string></file><file path="E:\testspace\ChatDemo\lib_cnchat3.0\res\values-sw\rc_notification_string.xml" qualifiers="sw"><string name="rc_notification_ticker_text">Umepokea Ujumbe Mpya</string><string name="rc_notification_new_plural_msg">Mrafiki.%1$d wametuma ujumbe  %2$d</string><string name="rc_notification_new_msg">%1$s ametuma ujumbe  %2$d</string></file></source><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\res\rs\release"/><source path="E:\testspace\ChatDemo\lib_cnchat3.0\build\generated\res\resValues\release"/></dataSet><dataSet config="release" generated-set="release$Generated"><source path="E:\testspace\ChatDemo\lib_cnchat3.0\src\release\res"/></dataSet><mergedItems/></merger>  
3 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/jniLibs/release/Rong_IMLib.jar deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/jniLibs/release/arm64-v8a/libRongIMLib.so deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/jniLibs/release/armeabi-v7a/libRongIMLib.so deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/jniLibs/release/armeabi/libRongIMLib.so deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/jniLibs/release/libcnliveutil.jar deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/jniLibs/release/x86/libRongIMLib.so deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/manifests/aapt/release/AndroidManifest.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<manifest xmlns:android="http://schemas.android.com/apk/res/android"  
3 - package="com.cnlive.libs.chat"  
4 - android:versionCode="1"  
5 - android:versionName="1.0" >  
6 -  
7 - <uses-sdk  
8 - android:minSdkVersion="9"  
9 - android:targetSdkVersion="19" />  
10 -  
11 - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />  
12 - <uses-permission android:name="android.permission.INTERNET" />  
13 - <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />  
14 - <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />  
15 - <uses-permission android:name="android.permission.READ_PHONE_STATE" />  
16 - <uses-permission android:name="android.permission.RECORD_AUDIO" />  
17 - <uses-permission android:name="android.permission.GET_TASKS" />  
18 - <uses-permission android:name="android.permission.WAKE_LOCK" />  
19 - <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />  
20 - <uses-permission android:name="android.permission.VIBRATE" />  
21 - <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />  
22 - <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />  
23 -  
24 - <application>  
25 -  
26 - <!-- com.cnlive.libs.chat config begin -->  
27 - <meta-data  
28 - android:name="RONG_CLOUD_APP_KEY"  
29 - android:value="此处添加APP_KEY" />  
30 -  
31 - <service  
32 - android:name="io.rong.imlib.ipc.RongService"  
33 - android:exported="true"  
34 - android:process=":ipc" />  
35 - <service  
36 - android:name="io.rong.imlib.ReConnectService"  
37 - android:exported="true" />  
38 -  
39 - <receiver  
40 - android:name="io.rong.imlib.ConnectChangeReceiver"  
41 - android:exported="true" />  
42 - <receiver  
43 - android:name="io.rong.imlib.HeartbeatReceiver"  
44 - android:process=":ipc" />  
45 - <!-- com.cnlive.libs.chat config end -->  
46 -  
47 -  
48 - <!-- 必选: SDK 核心功能 -->  
49 - <!-- 第三方相关,向第三方推送服务请求 token 的服务 -->  
50 - <service  
51 - android:name="io.rong.push.core.PushRegistrationService"  
52 - android:exported="false" />  
53 -  
54 - <!-- 处理 push 消息相关的服务 -->  
55 - <service  
56 - android:name="io.rong.push.core.MessageHandleService"  
57 - android:exported="true" />  
58 -  
59 - <!-- push服务 -->  
60 - <service  
61 - android:name="io.rong.push.PushService"  
62 - android:exported="true"  
63 - android:process="io.rong.push" > <!-- push进程,可以改名 -->  
64 - </service>  
65 -  
66 - <!-- push 相关事件接收器 -->  
67 - <receiver  
68 - android:name="io.rong.push.PushReceiver"  
69 - android:process="io.rong.push" > <!-- 此处进程可以改名,名称需要和PushService所在进程统一 -->  
70 - <!-- 心跳事件 -->  
71 - <intent-filter>  
72 - <action android:name="io.rong.push.intent.action.HEART_BEAT" />  
73 - </intent-filter>  
74 - <!-- 网络变动事件 -->  
75 - <intent-filter>  
76 - <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />  
77 - </intent-filter>  
78 - <!-- 部分用户事件 -->  
79 - <intent-filter>  
80 - <action android:name="android.intent.action.BOOT_COMPLETED" />  
81 - </intent-filter>  
82 - <intent-filter>  
83 - <action android:name="android.intent.action.USER_PRESENT" />  
84 - <action android:name="android.intent.action.ACTION_POWER_CONNECTED" />  
85 - <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />  
86 - </intent-filter>  
87 - </receiver>  
88 -  
89 - <!-- 必选: SDK 核心功能 -->  
90 -  
91 -  
92 - <!-- end -->  
93 - </application>  
94 -  
95 -</manifest>  
96 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/res/merged/release/values-en/values-en.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <string name="rc_init_failed">Failed Connect Custom Service</string>  
4 - <string name="rc_location_sharing_ended">Real-time Location session ended.</string>  
5 - <string name="rc_notification_new_msg">%1$s sent %2$d messages</string>  
6 - <string name="rc_notification_new_plural_msg">%1$d contacts sent %2$d messages</string>  
7 - <string name="rc_notification_ticker_text">You have a new message</string>  
8 - <string name="rc_quit_custom_service">Custom Service Have Quit</string>  
9 -</resources>  
10 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/res/merged/release/values-sw/values-sw.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <string name="rc_notification_new_msg">%1$s ametuma ujumbe  %2$d</string>  
4 - <string name="rc_notification_new_plural_msg">Mrafiki.%1$d wametuma ujumbe  %2$d</string>  
5 - <string name="rc_notification_ticker_text">Umepokea Ujumbe Mpya</string>  
6 -</resources>  
7 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/res/merged/release/values/values.xml deleted 100644 → 0
1 -<?xml version="1.0" encoding="utf-8"?>  
2 -<resources>  
3 - <bool name="rc_extension_history">false</bool>  
4 - <bool name="rc_typing_status">false</bool>  
5 - <integer name="rc_audio_encoding_bit_rate">7950</integer>  
6 - <integer name="rc_image_quality">85</integer>  
7 - <integer name="rc_image_size">960</integer>  
8 - <string name="rc_init_failed">连接客服失败</string>  
9 - <string name="rc_location_sharing_ended">位置共享已结束</string>  
10 - <string name="rc_media_message_default_save_path">/RongCloud/Media/</string>  
11 - <string name="rc_notification_new_msg">%1$s发来了%2$d条消息</string>  
12 - <string name="rc_notification_new_plural_msg">%1$d个联系人发来了%2$d条消息</string>  
13 - <string name="rc_notification_ticker_text">您有了一条新消息</string>  
14 - <string name="rc_quit_custom_service">客服已结束</string>  
15 -</resources>  
16 \ No newline at end of file 0 \ No newline at end of file
lib_cnchat3.0/build/intermediates/res/resources-debug-androidTest.ap_
No preview for this file type
lib_cnchat3.0/build/intermediates/transforms/mergeJniLibs/release/folders/2000/3/main/lib/arm64-v8a/libRongIMLib.so deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/transforms/mergeJniLibs/release/folders/2000/3/main/lib/armeabi-v7a/libRongIMLib.so deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/transforms/mergeJniLibs/release/folders/2000/3/main/lib/armeabi/libRongIMLib.so deleted 100644 → 0
No preview for this file type
lib_cnchat3.0/build/intermediates/transforms/mergeJniLibs/release/folders/2000/3/main/lib/x86/libRongIMLib.so deleted 100644 → 0
No preview for this file type