diff --git a/app/src/main/java/com/unionmed/unionmedtv/activity/DoctorDetailActivity.java b/app/src/main/java/com/unionmed/unionmedtv/activity/DoctorDetailActivity.java index 854d9f5..23a1271 100644 --- a/app/src/main/java/com/unionmed/unionmedtv/activity/DoctorDetailActivity.java +++ b/app/src/main/java/com/unionmed/unionmedtv/activity/DoctorDetailActivity.java @@ -18,6 +18,7 @@ import android.widget.Toast; import androidx.annotation.NonNull; import androidx.annotation.Nullable; +import com.blankj.utilcode.util.JsonUtils; import com.blankj.utilcode.util.LogUtils; import com.blankj.utilcode.util.ToastUtils; import com.bumptech.glide.Glide; @@ -32,11 +33,13 @@ import com.unionmed.unionmedtv.R; import com.unionmed.unionmedtv.api.ApplyVideoApi; import com.unionmed.unionmedtv.api.GetDoctorInfoApi; import com.unionmed.unionmedtv.base.BaseActivity; +import com.unionmed.unionmedtv.bean.ApplyVideoQequest; import com.unionmed.unionmedtv.dialog.TipDialog; import com.unionmed.unionmedtv.login.activity.LoginActivity; import com.unionmed.unionmedtv.network.ApiResponse; import com.unionmed.unionmedtv.network.HttpData; import com.unionmed.unionmedtv.utils.CacheUtil; +import com.unionmed.unionmedtv.utils.FastJsonUtil; import java.util.ArrayList; @@ -198,10 +201,23 @@ public class DoctorDetailActivity extends BaseActivity implements View.OnClickLi ToastUtils.showLong("当前正在进行通话"); return; } - List pKeys = new ArrayList<>(); - pKeys.add(targetId); +// List pKeys = new ArrayList<>(); +// pKeys.add(targetId); + List members = new ArrayList<>(); + ApplyVideoQequest applyVideoQequest = new ApplyVideoQequest(); + applyVideoQequest.setPkey(targetId); + applyVideoQequest.setIsdoctor(1); + applyVideoQequest.setRegionKey(CacheUtil.getPkey()); + applyVideoQequest.setDoctorUserAccount(userAccount); + members.add(applyVideoQequest); + + Map map = new HashMap<>(); + map.put("pkeys", FastJsonUtil.toJsonObject(members)); + map.put("type", "10001"); + EasyHttp.post(DoctorDetailActivity.this) - .api(new ApplyVideoApi(pKeys, "10001")) + .api(new ApplyVideoApi()) + .json(JsonUtils.formatJson(map.toString())) .request(new OnHttpListener>>() { @Override public void onHttpSuccess(HttpData> result) { diff --git a/app/src/main/java/com/unionmed/unionmedtv/api/ApplyVideoApi.java b/app/src/main/java/com/unionmed/unionmedtv/api/ApplyVideoApi.java index 9746882..d228947 100644 --- a/app/src/main/java/com/unionmed/unionmedtv/api/ApplyVideoApi.java +++ b/app/src/main/java/com/unionmed/unionmedtv/api/ApplyVideoApi.java @@ -19,12 +19,17 @@ public class ApplyVideoApi implements IRequestApi , IRequestType { return "/message/applyVideo"; } - - private List pkeys; + private String pkeys; private String type; - public ApplyVideoApi(List pkeys, String type) { + + public ApplyVideoApi setPkeys(String pkeys) { this.pkeys = pkeys; + return this; + } + + public ApplyVideoApi setType(String type) { this.type = type; + return this; } diff --git a/app/src/main/java/com/unionmed/unionmedtv/bean/ApplyVideoQequest.java b/app/src/main/java/com/unionmed/unionmedtv/bean/ApplyVideoQequest.java new file mode 100644 index 0000000..9051259 --- /dev/null +++ b/app/src/main/java/com/unionmed/unionmedtv/bean/ApplyVideoQequest.java @@ -0,0 +1,44 @@ +package com.unionmed.unionmedtv.bean; + +public class ApplyVideoQequest { + + private String doctorUserAccount;//医生账号 + private Integer isdoctor;//是否医生标识 0不是,1是 + + private String pkey; + private String regionKey;//医生所属地区服务key + + public String getDoctorUserAccount() { + return doctorUserAccount; + } + + public void setDoctorUserAccount(String doctorUserAccount) { + this.doctorUserAccount = doctorUserAccount; + } + + public Integer getIsdoctor() { + return isdoctor; + } + + public void setIsdoctor(Integer isdoctor) { + this.isdoctor = isdoctor; + } + + + + public String getPkey() { + return pkey; + } + + public void setPkey(String pkey) { + this.pkey = pkey; + } + + public String getRegionKey() { + return regionKey; + } + + public void setRegionKey(String regionKey) { + this.regionKey = regionKey; + } +} diff --git a/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4.bin b/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4.bin deleted file mode 100644 index 0d259dd..0000000 --- a/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4/classes/classes.dex b/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4/classes/classes.dex deleted file mode 100644 index 38c2be9..0000000 Binary files a/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4/classes/classes.dex and /dev/null differ diff --git a/imlib/build/.transforms/6c42b5ce67ee2dcb3f26438f285afb2f.bin b/imlib/build/.transforms/6c42b5ce67ee2dcb3f26438f285afb2f.bin deleted file mode 100644 index 0d259dd..0000000 --- a/imlib/build/.transforms/6c42b5ce67ee2dcb3f26438f285afb2f.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/imlib/build/.transforms/6c42b5ce67ee2dcb3f26438f285afb2f/classes/classes.dex b/imlib/build/.transforms/6c42b5ce67ee2dcb3f26438f285afb2f/classes/classes.dex deleted file mode 100644 index 7b117e8..0000000 Binary files a/imlib/build/.transforms/6c42b5ce67ee2dcb3f26438f285afb2f/classes/classes.dex and /dev/null differ diff --git a/imlib/build/generated/source/buildConfig/debug/io/rong/libcore/BuildConfig.java b/imlib/build/generated/source/buildConfig/debug/io/rong/libcore/BuildConfig.java deleted file mode 100644 index 9a74817..0000000 --- a/imlib/build/generated/source/buildConfig/debug/io/rong/libcore/BuildConfig.java +++ /dev/null @@ -1,18 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package io.rong.libcore; - -public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String LIBRARY_PACKAGE_NAME = "io.rong.libcore"; - /** - * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME - */ - @Deprecated - public static final String APPLICATION_ID = "io.rong.libcore"; - public static final String BUILD_TYPE = "debug"; - public static final String FLAVOR = ""; - public static final int VERSION_CODE = -1; - public static final String VERSION_NAME = "5.2.1.55"; -} diff --git a/imlib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/imlib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml deleted file mode 100644 index e19b4ce..0000000 --- a/imlib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/imlib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/imlib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json deleted file mode 100644 index b56dbc1..0000000 --- a/imlib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":-1,"versionName":"5.2.1.55","enabled":true,"outputFile":"imlib-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"io.rong.libcore","split":""}}] \ No newline at end of file diff --git a/imlib/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/imlib/build/intermediates/annotation_processor_list/debug/annotationProcessors.json deleted file mode 100644 index 9e26dfe..0000000 --- a/imlib/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/imlib/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/imlib/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt deleted file mode 100644 index e69de29..0000000 diff --git a/imlib/build/intermediates/compile_library_classes/debug/classes.jar b/imlib/build/intermediates/compile_library_classes/debug/classes.jar deleted file mode 100644 index bd1e09d..0000000 Binary files a/imlib/build/intermediates/compile_library_classes/debug/classes.jar and /dev/null differ diff --git a/imlib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/imlib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar deleted file mode 100644 index c9561cc..0000000 Binary files a/imlib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar and /dev/null differ diff --git a/imlib/build/intermediates/incremental/debug-mergeNativeLibs/merge-state b/imlib/build/intermediates/incremental/debug-mergeNativeLibs/merge-state deleted file mode 100644 index 62adc2c..0000000 Binary files a/imlib/build/intermediates/incremental/debug-mergeNativeLibs/merge-state and /dev/null differ diff --git a/imlib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/imlib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml deleted file mode 100644 index f2fa067..0000000 --- a/imlib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/mergeDebugShaders/merger.xml b/imlib/build/intermediates/incremental/mergeDebugShaders/merger.xml deleted file mode 100644 index 95d39e9..0000000 --- a/imlib/build/intermediates/incremental/mergeDebugShaders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/packageDebugAssets/merger.xml b/imlib/build/intermediates/incremental/packageDebugAssets/merger.xml deleted file mode 100644 index ae437ee..0000000 --- a/imlib/build/intermediates/incremental/packageDebugAssets/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/imlib/build/intermediates/incremental/packageDebugResources/compile-file-map.properties deleted file mode 100644 index 3da1126..0000000 --- a/imlib/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +++ /dev/null @@ -1 +0,0 @@ -#Tue Aug 01 16:41:57 CST 2023 diff --git a/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-ar-rIL/values-ar-rIL.xml b/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-ar-rIL/values-ar-rIL.xml deleted file mode 100644 index f871d2a..0000000 --- a/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-ar-rIL/values-ar-rIL.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - فشل الاتصال بخدمة العميل - تم مشاركة الموقع - رسالة جديدة - رسائل %2$d أرسل %1$d - رسائل %2$d جهات اتصال %1$d - لقد تلقيت رسالة جديدة - تم ترك خدمة العميل - \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-en/values-en.xml b/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-en/values-en.xml deleted file mode 100644 index 85db042..0000000 --- a/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-en/values-en.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - Failed Connect Custom Service - Real-time Location session ended. - New Messages - %1$s sent %2$d messages - %1$d contacts sent %2$d messages - You have a new message - Custom Service Have Quit - A location sharing message was received. - \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-sw/values-sw.xml b/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-sw/values-sw.xml deleted file mode 100644 index c396347..0000000 --- a/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-sw/values-sw.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - %1$s ametuma ujumbe  %2$d - Mrafiki.%1$d wametuma ujumbe  %2$d - Umepokea Ujumbe Mpya - \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml deleted file mode 100644 index d1fb559..0000000 --- a/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - true - true - false - false - 6000 - 85 - 1080 - 240 - 70 - 408 - 200 - 20971520 - 960 - 544 - 100 - 240 - 30 - 240000 - 1000 - 150000 - 连接客服失败 - 位置共享已结束 - /RongCloud/Media/ - 新消息 - %1$s发来了%2$d条消息 - %1$d个联系人发来了%2$d条消息 - 你收到了一条新消息 - 客服已结束 - 收到一条位置共享消息 - \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/packageDebugResources/merger.xml b/imlib/build/intermediates/incremental/packageDebugResources/merger.xml deleted file mode 100644 index a10e325..0000000 --- a/imlib/build/intermediates/incremental/packageDebugResources/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - -8510802003024010070408240false6000/RongCloud/Media/true150000100020971520truefalse544960240000客服已结束连接客服失败位置共享已结束收到一条位置共享消息你收到了一条新消息%1$s发来了%2$d条消息%1$d个联系人发来了%2$d条消息新消息تم ترك خدمة العميل فشل الاتصال بخدمة العميل تم مشاركة الموقع لقد تلقيت رسالة جديدةرسائل %2$d أرسل %1$d رسائل %2$d جهات اتصال %1$d رسالة جديدةCustom Service Have QuitFailed Connect Custom ServiceReal-time Location session ended.A location sharing message was received.You have a new message%1$s sent %2$d messages%1$d contacts sent %2$d messagesNew MessagesUmepokea Ujumbe Mpya%1$s ametuma ujumbe  %2$dMrafiki.%1$d wametuma ujumbe  %2$d \ No newline at end of file diff --git a/imlib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongIMLib.so b/imlib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongIMLib.so deleted file mode 100644 index dd3381e..0000000 Binary files a/imlib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libsqlite.so b/imlib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libsqlite.so deleted file mode 100644 index 687ef3e..0000000 Binary files a/imlib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongIMLib.so b/imlib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongIMLib.so deleted file mode 100644 index e36bfd0..0000000 Binary files a/imlib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libsqlite.so b/imlib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libsqlite.so deleted file mode 100644 index 6a1815f..0000000 Binary files a/imlib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/intermediate-jars/debug/jni/x86/libRongIMLib.so b/imlib/build/intermediates/intermediate-jars/debug/jni/x86/libRongIMLib.so deleted file mode 100644 index 58eec8c..0000000 Binary files a/imlib/build/intermediates/intermediate-jars/debug/jni/x86/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/intermediate-jars/debug/jni/x86/libsqlite.so b/imlib/build/intermediates/intermediate-jars/debug/jni/x86/libsqlite.so deleted file mode 100644 index c712ff6..0000000 Binary files a/imlib/build/intermediates/intermediate-jars/debug/jni/x86/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/intermediate-jars/debug/jni/x86_64/libRongIMLib.so b/imlib/build/intermediates/intermediate-jars/debug/jni/x86_64/libRongIMLib.so deleted file mode 100644 index ed9cbcb..0000000 Binary files a/imlib/build/intermediates/intermediate-jars/debug/jni/x86_64/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/intermediate-jars/debug/jni/x86_64/libsqlite.so b/imlib/build/intermediates/intermediate-jars/debug/jni/x86_64/libsqlite.so deleted file mode 100644 index 25b8309..0000000 Binary files a/imlib/build/intermediates/intermediate-jars/debug/jni/x86_64/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/javac/debug/classes/io/rong/libcore/BuildConfig.class b/imlib/build/intermediates/javac/debug/classes/io/rong/libcore/BuildConfig.class deleted file mode 100644 index c41f433..0000000 Binary files a/imlib/build/intermediates/javac/debug/classes/io/rong/libcore/BuildConfig.class and /dev/null differ diff --git a/imlib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongIMLib.so b/imlib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongIMLib.so deleted file mode 100644 index dd3381e..0000000 Binary files a/imlib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libsqlite.so b/imlib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libsqlite.so deleted file mode 100644 index 687ef3e..0000000 Binary files a/imlib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongIMLib.so b/imlib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongIMLib.so deleted file mode 100644 index e36bfd0..0000000 Binary files a/imlib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libsqlite.so b/imlib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libsqlite.so deleted file mode 100644 index 6a1815f..0000000 Binary files a/imlib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongIMLib.so b/imlib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongIMLib.so deleted file mode 100644 index 58eec8c..0000000 Binary files a/imlib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/library_and_local_jars_jni/debug/x86/libsqlite.so b/imlib/build/intermediates/library_and_local_jars_jni/debug/x86/libsqlite.so deleted file mode 100644 index c712ff6..0000000 Binary files a/imlib/build/intermediates/library_and_local_jars_jni/debug/x86/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/library_and_local_jars_jni/debug/x86_64/libRongIMLib.so b/imlib/build/intermediates/library_and_local_jars_jni/debug/x86_64/libRongIMLib.so deleted file mode 100644 index ed9cbcb..0000000 Binary files a/imlib/build/intermediates/library_and_local_jars_jni/debug/x86_64/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/library_and_local_jars_jni/debug/x86_64/libsqlite.so b/imlib/build/intermediates/library_and_local_jars_jni/debug/x86_64/libsqlite.so deleted file mode 100644 index 25b8309..0000000 Binary files a/imlib/build/intermediates/library_and_local_jars_jni/debug/x86_64/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/library_java_res/debug/res.jar b/imlib/build/intermediates/library_java_res/debug/res.jar deleted file mode 100644 index 15cb0ec..0000000 Binary files a/imlib/build/intermediates/library_java_res/debug/res.jar and /dev/null differ diff --git a/imlib/build/intermediates/library_manifest/debug/AndroidManifest.xml b/imlib/build/intermediates/library_manifest/debug/AndroidManifest.xml deleted file mode 100644 index e900c2b..0000000 --- a/imlib/build/intermediates/library_manifest/debug/AndroidManifest.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/imlib/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/imlib/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt deleted file mode 100644 index 5f5c674..0000000 --- a/imlib/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt +++ /dev/null @@ -1,31 +0,0 @@ -R_DEF: Internal format may change without notice -local -bool rc_extension_history -bool rc_q_storage_mode_enable -bool rc_secure_shared_preferences -bool rc_typing_status -integer rc_disappear_interval -integer rc_image_quality -integer rc_image_size -integer rc_location_thumb_height -integer rc_location_thumb_quality -integer rc_location_thumb_width -integer rc_max_original_image_size -integer rc_resume_file_transfer_size_each_slice -integer rc_sight_compress_height -integer rc_sight_compress_width -integer rc_thumb_compress_min_size -integer rc_thumb_compress_size -integer rc_thumb_quality -string push_heartbeat_timer -string rc_heartbeat_acquire_time -string rc_heartbeat_timer -string rc_init_failed -string rc_location_sharing_ended -string rc_media_message_default_save_path -string rc_notification_channel_name -string rc_notification_new_msg -string rc_notification_new_plural_msg -string rc_notification_ticker_text -string rc_quit_custom_service -string rc_receive_location_share_msg diff --git a/imlib/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/imlib/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt deleted file mode 100644 index 134032c..0000000 --- a/imlib/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +++ /dev/null @@ -1,140 +0,0 @@ -1 -2 -6 -7 D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml -9 android:targetSdkVersion="31" /> -9-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml -10 -11 -12 -12-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:6:5-81 -12-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:6:22-78 -13 -13-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:7:5-80 -13-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:7:22-77 -14 -15 -15-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:9:5-67 -15-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:9:22-64 -16 -16-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:10:5-79 -16-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:10:22-76 -17 -17-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:11:5-76 -17-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:11:22-73 -18 -19 -19-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:13:5-68 -19-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:13:22-65 -20 -21 -22 -23 -24 -25 -26 -29 -30 -30-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:24:5-73:19 -31 D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:25:9-27:38 -32 android:name="io.rong.imlib.ipc.RongService" -32-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:26:13-57 -33 android:process=":ipc" /> -33-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:27:13-35 -34 -35 -35-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:29:9-72 -35-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:29:19-69 -36 D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:31:9-33:38 -37 android:name="io.rong.imlib.HeartbeatReceiver" -37-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:32:13-59 -38 android:process=":ipc" /> -38-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:33:13-35 -39 -40 -41 D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:36:9-40:46 -42 android:name="io.rong.push.rongpush.PushService" -42-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:37:13-61 -43 android:exported="true" -43-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:38:13-36 -44 android:permission="android.permission.BIND_JOB_SERVICE" -44-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:39:13-69 -45 android:process="io.rong.push" /> -45-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:40:13-43 -46 -47 -48 D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:43:9-59:20 -49 android:name="io.rong.push.rongpush.PushReceiver" -49-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:44:13-62 -50 android:exported="true" -50-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:45:13-36 -51 android:process="io.rong.push" > -51-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:46:13-43 -52 -53 -53-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:48:13-51:29 -53-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:48:29-51 -54 -54-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:49:17-80 -54-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:49:25-77 -55 -55-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:50:17-79 -55-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:50:25-76 -56 -57 -58 -59 -59-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:54:13-58:29 -59-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:54:28-50 -60 -60-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:55:17-77 -60-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:55:25-74 -61 -61-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:56:17-87 -61-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:56:25-84 -62 -62-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:57:17-90 -62-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:57:25-87 -63 -64 -65 -66 D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:61:9-72:20 -67 android:name="io.rong.push.notification.RongBridgeActivity" -67-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:62:13-72 -68 android:enabled="true" -68-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:63:13-35 -69 android:exported="true" -69-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:64:13-36 -70 android:launchMode="singleInstance" -70-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:65:13-48 -71 android:theme="@android:style/Theme.Translucent.NoTitleBar" > -71-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:66:13-72 -72 -72-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:67:13-71:29 -73 -73-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:68:17-68 -73-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:68:25-66 -74 -74-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:69:17-86 -74-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:69:25-84 -75 -76 -76-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:70:17-76 -76-->D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:70:27-73 -77 -78 -79 -80 -81 diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongIMLib.so b/imlib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongIMLib.so deleted file mode 100644 index 1621624..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libsqlite.so b/imlib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libsqlite.so deleted file mode 100644 index ddc47a0..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongIMLib.so b/imlib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongIMLib.so deleted file mode 100644 index 5a379ed..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libsqlite.so b/imlib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libsqlite.so deleted file mode 100644 index 27cc05d..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_chatroom_5.2.1.55.aar b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_chatroom_5.2.1.55.aar deleted file mode 100644 index 363fb1a..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_chatroom_5.2.1.55.aar and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_customservice_5.2.1.55.aar b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_customservice_5.2.1.55.aar deleted file mode 100644 index add8def..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_customservice_5.2.1.55.aar and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_discussion_5.2.1.55.aar b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_discussion_5.2.1.55.aar deleted file mode 100644 index 6149fbf..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_discussion_5.2.1.55.aar and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_imlib_5.2.1.55.jar b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_imlib_5.2.1.55.jar deleted file mode 100644 index d5c0b43..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_imlib_5.2.1.55.jar and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_imlibcore_5.2.1.55.jar b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_imlibcore_5.2.1.55.jar deleted file mode 100644 index 6792b9e..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_imlibcore_5.2.1.55.jar and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_location_5.2.1.55.aar b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_location_5.2.1.55.aar deleted file mode 100644 index 1d5b3c0..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_location_5.2.1.55.aar and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_publicservice_5.2.1.55.aar b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_publicservice_5.2.1.55.aar deleted file mode 100644 index 3761978..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/rong_publicservice_5.2.1.55.aar and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/x86/libRongIMLib.so b/imlib/build/intermediates/merged_jni_libs/debug/out/x86/libRongIMLib.so deleted file mode 100644 index 9797693..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/x86/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/x86/libsqlite.so b/imlib/build/intermediates/merged_jni_libs/debug/out/x86/libsqlite.so deleted file mode 100644 index 0bef3c6..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/x86/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/x86_64/libRongIMLib.so b/imlib/build/intermediates/merged_jni_libs/debug/out/x86_64/libRongIMLib.so deleted file mode 100644 index 44464e8..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/x86_64/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_jni_libs/debug/out/x86_64/libsqlite.so b/imlib/build/intermediates/merged_jni_libs/debug/out/x86_64/libsqlite.so deleted file mode 100644 index bd30960..0000000 Binary files a/imlib/build/intermediates/merged_jni_libs/debug/out/x86_64/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_manifests/debug/output.json b/imlib/build/intermediates/merged_manifests/debug/output.json deleted file mode 100644 index db3072d..0000000 --- a/imlib/build/intermediates/merged_manifests/debug/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":-1,"versionName":"5.2.1.55","enabled":true,"outputFile":"imlib-debug.aar","fullName":"debug","baseName":"debug"},"path":"..\\..\\library_manifest\\debug\\AndroidManifest.xml","properties":{"packageId":"io.rong.libcore","split":""}}] \ No newline at end of file diff --git a/imlib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongIMLib.so b/imlib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongIMLib.so deleted file mode 100644 index 1621624..0000000 Binary files a/imlib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libsqlite.so b/imlib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libsqlite.so deleted file mode 100644 index ddc47a0..0000000 Binary files a/imlib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongIMLib.so b/imlib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongIMLib.so deleted file mode 100644 index 5a379ed..0000000 Binary files a/imlib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libsqlite.so b/imlib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libsqlite.so deleted file mode 100644 index 27cc05d..0000000 Binary files a/imlib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongIMLib.so b/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongIMLib.so deleted file mode 100644 index 9797693..0000000 Binary files a/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86/libsqlite.so b/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86/libsqlite.so deleted file mode 100644 index 0bef3c6..0000000 Binary files a/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libRongIMLib.so b/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libRongIMLib.so deleted file mode 100644 index 44464e8..0000000 Binary files a/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libsqlite.so b/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libsqlite.so deleted file mode 100644 index bd30960..0000000 Binary files a/imlib/build/intermediates/merged_native_libs/debug/out/lib/x86_64/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/packaged_res/debug/values-ar-rIL/values-ar-rIL.xml b/imlib/build/intermediates/packaged_res/debug/values-ar-rIL/values-ar-rIL.xml deleted file mode 100644 index f871d2a..0000000 --- a/imlib/build/intermediates/packaged_res/debug/values-ar-rIL/values-ar-rIL.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - فشل الاتصال بخدمة العميل - تم مشاركة الموقع - رسالة جديدة - رسائل %2$d أرسل %1$d - رسائل %2$d جهات اتصال %1$d - لقد تلقيت رسالة جديدة - تم ترك خدمة العميل - \ No newline at end of file diff --git a/imlib/build/intermediates/packaged_res/debug/values-en/values-en.xml b/imlib/build/intermediates/packaged_res/debug/values-en/values-en.xml deleted file mode 100644 index 85db042..0000000 --- a/imlib/build/intermediates/packaged_res/debug/values-en/values-en.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - Failed Connect Custom Service - Real-time Location session ended. - New Messages - %1$s sent %2$d messages - %1$d contacts sent %2$d messages - You have a new message - Custom Service Have Quit - A location sharing message was received. - \ No newline at end of file diff --git a/imlib/build/intermediates/packaged_res/debug/values-sw/values-sw.xml b/imlib/build/intermediates/packaged_res/debug/values-sw/values-sw.xml deleted file mode 100644 index c396347..0000000 --- a/imlib/build/intermediates/packaged_res/debug/values-sw/values-sw.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - %1$s ametuma ujumbe  %2$d - Mrafiki.%1$d wametuma ujumbe  %2$d - Umepokea Ujumbe Mpya - \ No newline at end of file diff --git a/imlib/build/intermediates/packaged_res/debug/values/values.xml b/imlib/build/intermediates/packaged_res/debug/values/values.xml deleted file mode 100644 index d1fb559..0000000 --- a/imlib/build/intermediates/packaged_res/debug/values/values.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - true - true - false - false - 6000 - 85 - 1080 - 240 - 70 - 408 - 200 - 20971520 - 960 - 544 - 100 - 240 - 30 - 240000 - 1000 - 150000 - 连接客服失败 - 位置共享已结束 - /RongCloud/Media/ - 新消息 - %1$s发来了%2$d条消息 - %1$d个联系人发来了%2$d条消息 - 你收到了一条新消息 - 客服已结束 - 收到一条位置共享消息 - \ No newline at end of file diff --git a/imlib/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/imlib/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt deleted file mode 100644 index b7981ef..0000000 --- a/imlib/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt +++ /dev/null @@ -1,332 +0,0 @@ -io.rong.libcore -attr alpha -attr buttonSize -attr circleCrop -attr colorScheme -attr coordinatorLayoutStyle -attr font -attr fontProviderAuthority -attr fontProviderCerts -attr fontProviderFetchStrategy -attr fontProviderFetchTimeout -attr fontProviderPackage -attr fontProviderQuery -attr fontStyle -attr fontVariationSettings -attr fontWeight -attr imageAspectRatio -attr imageAspectRatioAdjust -attr keylines -attr layout_anchor -attr layout_anchorGravity -attr layout_behavior -attr layout_dodgeInsetEdges -attr layout_insetEdge -attr layout_keyline -attr scopeUris -attr statusBarBackground -attr ttcIndex -bool rc_extension_history -bool rc_q_storage_mode_enable -bool rc_secure_shared_preferences -bool rc_typing_status -color common_google_signin_btn_text_dark -color common_google_signin_btn_text_dark_default -color common_google_signin_btn_text_dark_disabled -color common_google_signin_btn_text_dark_focused -color common_google_signin_btn_text_dark_pressed -color common_google_signin_btn_text_light -color common_google_signin_btn_text_light_default -color common_google_signin_btn_text_light_disabled -color common_google_signin_btn_text_light_focused -color common_google_signin_btn_text_light_pressed -color common_google_signin_btn_tint -color emui_color_gray_1 -color emui_color_gray_10 -color emui_color_gray_7 -color notification_action_color_filter -color notification_icon_bg_color -color ripple_material_light -color secondary_text_default_material_light -color upsdk_color_gray_1 -color upsdk_color_gray_10 -color upsdk_color_gray_7 -dimen compat_button_inset_horizontal_material -dimen compat_button_inset_vertical_material -dimen compat_button_padding_horizontal_material -dimen compat_button_padding_vertical_material -dimen compat_control_corner_material -dimen compat_notification_large_icon_max_height -dimen compat_notification_large_icon_max_width -dimen notification_action_icon_size -dimen notification_action_text_size -dimen notification_big_circle_margin -dimen notification_content_margin_start -dimen notification_large_icon_height -dimen notification_large_icon_width -dimen notification_main_column_padding_top -dimen notification_media_narrow_margin -dimen notification_right_icon_size -dimen notification_right_side_padding_top -dimen notification_small_icon_background_padding -dimen notification_small_icon_size_as_large -dimen notification_subtext_size -dimen notification_top_pad -dimen notification_top_pad_large_text -dimen upsdk_margin_l -dimen upsdk_margin_m -dimen upsdk_margin_xs -dimen upsdk_master_body_2 -dimen upsdk_master_subtitle -drawable common_full_open_on_phone -drawable common_google_signin_btn_icon_dark -drawable common_google_signin_btn_icon_dark_focused -drawable common_google_signin_btn_icon_dark_normal -drawable common_google_signin_btn_icon_dark_normal_background -drawable common_google_signin_btn_icon_disabled -drawable common_google_signin_btn_icon_light -drawable common_google_signin_btn_icon_light_focused -drawable common_google_signin_btn_icon_light_normal -drawable common_google_signin_btn_icon_light_normal_background -drawable common_google_signin_btn_text_dark -drawable common_google_signin_btn_text_dark_focused -drawable common_google_signin_btn_text_dark_normal -drawable common_google_signin_btn_text_dark_normal_background -drawable common_google_signin_btn_text_disabled -drawable common_google_signin_btn_text_light -drawable common_google_signin_btn_text_light_focused -drawable common_google_signin_btn_text_light_normal -drawable common_google_signin_btn_text_light_normal_background -drawable googleg_disabled_color_18 -drawable googleg_standard_color_18 -drawable notification_action_background -drawable notification_bg -drawable notification_bg_low -drawable notification_bg_low_normal -drawable notification_bg_low_pressed -drawable notification_bg_normal -drawable notification_bg_normal_pressed -drawable notification_icon_background -drawable notification_template_icon_bg -drawable notification_template_icon_low_bg -drawable notification_tile_bg -drawable notify_panel_notification_icon_bg -drawable push_pure_close -drawable stat_sys_third_app_notify -drawable upsdk_cancel_bg -drawable upsdk_cancel_normal -drawable upsdk_cancel_pressed_bg -drawable upsdk_third_download_bg -id action -id action_container -id action_divider -id action_image -id action_text -id actions -id adjust_height -id adjust_width -id allsize_textview -id appsize_textview -id async -id auto -id blocking -id bottom -id cancel_bg -id cancel_imageview -id chronometer -id content_layout -id content_textview -id dark -id divider -id download_info_progress -id enable_service_text -id end -id forever -id hms_message_text -id hms_progress_bar -id hms_progress_text -id icon -id icon_group -id icon_only -id info -id italic -id left -id light -id line1 -id line3 -id name_layout -id name_textview -id none -id normal -id notification_background -id notification_main_column -id notification_main_column_container -id push_big_bigtext_defaultView -id push_big_bigview_defaultView -id push_big_defaultView -id push_big_notification -id push_big_notification_content -id push_big_notification_date -id push_big_notification_icon -id push_big_notification_icon2 -id push_big_notification_title -id push_big_pic_default_Content -id push_big_text_notification_area -id push_pure_bigview_banner -id push_pure_bigview_expanded -id push_pure_close -id right -id right_icon -id right_side -id scroll_layout -id size_layout -id standard -id start -id tag_transition_group -id tag_unhandled_key_event_manager -id tag_unhandled_key_listeners -id text -id text2 -id third_app_dl_progress_text -id third_app_dl_progressbar -id third_app_warn_text -id time -id title -id top -id version_layout -id version_textview -id wide -integer google_play_services_version -integer rc_disappear_interval -integer rc_image_quality -integer rc_image_size -integer rc_location_thumb_height -integer rc_location_thumb_quality -integer rc_location_thumb_width -integer rc_max_original_image_size -integer rc_resume_file_transfer_size_each_slice -integer rc_sight_compress_height -integer rc_sight_compress_width -integer rc_thumb_compress_min_size -integer rc_thumb_compress_size -integer rc_thumb_quality -integer status_bar_notification_info_maxnum -layout activity_endisable_service -layout hms_download_progress -layout notification_action -layout notification_action_tombstone -layout notification_template_custom_big -layout notification_template_icon_group -layout notification_template_part_chronometer -layout notification_template_part_time -layout push_expandable_big_image_notification -layout push_expandable_big_text_notification -layout push_pure_pic_notification_f6 -layout push_pure_pic_notification_f7 -layout push_pure_pic_notification_f8 -layout push_pure_pic_notification_f9 -layout push_pure_pic_notification_f9_275 -layout upsdk_app_dl_progress_dialog -layout upsdk_ota_update_view -string app_name -string common_google_play_services_enable_button -string common_google_play_services_enable_text -string common_google_play_services_enable_title -string common_google_play_services_install_button -string common_google_play_services_install_text -string common_google_play_services_install_title -string common_google_play_services_notification_channel_name -string common_google_play_services_notification_ticker -string common_google_play_services_unknown_issue -string common_google_play_services_unsupported_text -string common_google_play_services_update_button -string common_google_play_services_update_text -string common_google_play_services_update_title -string common_google_play_services_updating_text -string common_google_play_services_wear_update_text -string common_open_on_phone -string common_signin_button_text -string common_signin_button_text_long -string fcm_fallback_notification_channel_label -string gcm_fallback_notification_channel_label -string hms_abort -string hms_abort_message -string hms_bindfaildlg_message -string hms_bindfaildlg_title -string hms_cancel -string hms_check_failure -string hms_checking -string hms_confirm -string hms_download_failure -string hms_download_no_space -string hms_download_retry -string hms_downloading_loading -string hms_install -string hms_install_message -string hms_push_channel -string hms_push_google -string hms_push_vmall -string hms_retry -string hms_update -string hms_update_continue -string hms_update_message -string hms_update_message_new -string hms_update_nettype -string hms_update_title -string push_cat_body -string push_cat_head -string push_heartbeat_timer -string rc_heartbeat_acquire_time -string rc_heartbeat_timer -string rc_init_failed -string rc_location_sharing_ended -string rc_media_message_default_save_path -string rc_notification_channel_name -string rc_notification_new_msg -string rc_notification_new_plural_msg -string rc_notification_ticker_text -string rc_quit_custom_service -string rc_receive_location_share_msg -string status_bar_notification_info_overflow -string system_default_channel -string upsdk_app_download_info_new -string upsdk_app_download_installing -string upsdk_app_size -string upsdk_app_version -string upsdk_appstore_install -string upsdk_apptouch_store_url -string upsdk_cancel -string upsdk_checking_update_prompt -string upsdk_choice_update -string upsdk_detail -string upsdk_getting_message_fail_prompt_toast -string upsdk_mobile_dld_warn -string upsdk_no_available_network_prompt_toast -string upsdk_ota_app_name -string upsdk_ota_cancel -string upsdk_ota_force_cancel_new -string upsdk_ota_notify_updatebtn -string upsdk_ota_title -string upsdk_storage_utils -string upsdk_store_url -string upsdk_third_app_dl_cancel_download_prompt_ex -string upsdk_third_app_dl_install_failed -string upsdk_third_app_dl_sure_cancel_download -string upsdk_update_check_no_new_version -style TextAppearance_Compat_Notification -style TextAppearance_Compat_Notification_Info -style TextAppearance_Compat_Notification_Line2 -style TextAppearance_Compat_Notification_Time -style TextAppearance_Compat_Notification_Title -style Widget_Compat_NotificationActionContainer -style Widget_Compat_NotificationActionText -style Widget_Support_CoordinatorLayout -styleable ColorStateListItem alpha android_alpha android_color -styleable CoordinatorLayout keylines statusBarBackground -styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline -styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery -styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex -styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type -styleable GradientColorItem android_color android_offset -styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust -styleable SignInButton buttonSize colorScheme scopeUris diff --git a/imlib/build/intermediates/runtime_library_classes/debug/classes.jar b/imlib/build/intermediates/runtime_library_classes/debug/classes.jar deleted file mode 100644 index bd1e09d..0000000 Binary files a/imlib/build/intermediates/runtime_library_classes/debug/classes.jar and /dev/null differ diff --git a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongIMLib.so b/imlib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongIMLib.so deleted file mode 100644 index dd3381e..0000000 Binary files a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libsqlite.so b/imlib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libsqlite.so deleted file mode 100644 index 687ef3e..0000000 Binary files a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongIMLib.so b/imlib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongIMLib.so deleted file mode 100644 index e36bfd0..0000000 Binary files a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libsqlite.so b/imlib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libsqlite.so deleted file mode 100644 index 6a1815f..0000000 Binary files a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongIMLib.so b/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongIMLib.so deleted file mode 100644 index 58eec8c..0000000 Binary files a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libsqlite.so b/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libsqlite.so deleted file mode 100644 index c712ff6..0000000 Binary files a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libRongIMLib.so b/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libRongIMLib.so deleted file mode 100644 index ed9cbcb..0000000 Binary files a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libRongIMLib.so and /dev/null differ diff --git a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libsqlite.so b/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libsqlite.so deleted file mode 100644 index 25b8309..0000000 Binary files a/imlib/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libsqlite.so and /dev/null differ diff --git a/imlib/build/intermediates/symbols/debug/R.txt b/imlib/build/intermediates/symbols/debug/R.txt deleted file mode 100644 index aa3b6a8..0000000 --- a/imlib/build/intermediates/symbols/debug/R.txt +++ /dev/null @@ -1,379 +0,0 @@ -int attr alpha 0x7f040001 -int attr buttonSize 0x7f040002 -int attr circleCrop 0x7f040003 -int attr colorScheme 0x7f040004 -int attr coordinatorLayoutStyle 0x7f040005 -int attr font 0x7f040006 -int attr fontProviderAuthority 0x7f040007 -int attr fontProviderCerts 0x7f040008 -int attr fontProviderFetchStrategy 0x7f040009 -int attr fontProviderFetchTimeout 0x7f04000a -int attr fontProviderPackage 0x7f04000b -int attr fontProviderQuery 0x7f04000c -int attr fontStyle 0x7f04000d -int attr fontVariationSettings 0x7f04000e -int attr fontWeight 0x7f04000f -int attr imageAspectRatio 0x7f040010 -int attr imageAspectRatioAdjust 0x7f040011 -int attr keylines 0x7f040012 -int attr layout_anchor 0x7f040013 -int attr layout_anchorGravity 0x7f040014 -int attr layout_behavior 0x7f040015 -int attr layout_dodgeInsetEdges 0x7f040016 -int attr layout_insetEdge 0x7f040017 -int attr layout_keyline 0x7f040018 -int attr scopeUris 0x7f040019 -int attr statusBarBackground 0x7f04001a -int attr ttcIndex 0x7f04001b -int bool rc_extension_history 0x7f050001 -int bool rc_q_storage_mode_enable 0x7f050002 -int bool rc_secure_shared_preferences 0x7f050003 -int bool rc_typing_status 0x7f050004 -int color common_google_signin_btn_text_dark 0x7f060001 -int color common_google_signin_btn_text_dark_default 0x7f060002 -int color common_google_signin_btn_text_dark_disabled 0x7f060003 -int color common_google_signin_btn_text_dark_focused 0x7f060004 -int color common_google_signin_btn_text_dark_pressed 0x7f060005 -int color common_google_signin_btn_text_light 0x7f060006 -int color common_google_signin_btn_text_light_default 0x7f060007 -int color common_google_signin_btn_text_light_disabled 0x7f060008 -int color common_google_signin_btn_text_light_focused 0x7f060009 -int color common_google_signin_btn_text_light_pressed 0x7f06000a -int color common_google_signin_btn_tint 0x7f06000b -int color emui_color_gray_1 0x7f06000c -int color emui_color_gray_10 0x7f06000d -int color emui_color_gray_7 0x7f06000e -int color notification_action_color_filter 0x7f06000f -int color notification_icon_bg_color 0x7f060010 -int color ripple_material_light 0x7f060011 -int color secondary_text_default_material_light 0x7f060012 -int color upsdk_color_gray_1 0x7f060013 -int color upsdk_color_gray_10 0x7f060014 -int color upsdk_color_gray_7 0x7f060015 -int dimen compat_button_inset_horizontal_material 0x7f070001 -int dimen compat_button_inset_vertical_material 0x7f070002 -int dimen compat_button_padding_horizontal_material 0x7f070003 -int dimen compat_button_padding_vertical_material 0x7f070004 -int dimen compat_control_corner_material 0x7f070005 -int dimen compat_notification_large_icon_max_height 0x7f070006 -int dimen compat_notification_large_icon_max_width 0x7f070007 -int dimen notification_action_icon_size 0x7f070008 -int dimen notification_action_text_size 0x7f070009 -int dimen notification_big_circle_margin 0x7f07000a -int dimen notification_content_margin_start 0x7f07000b -int dimen notification_large_icon_height 0x7f07000c -int dimen notification_large_icon_width 0x7f07000d -int dimen notification_main_column_padding_top 0x7f07000e -int dimen notification_media_narrow_margin 0x7f07000f -int dimen notification_right_icon_size 0x7f070010 -int dimen notification_right_side_padding_top 0x7f070011 -int dimen notification_small_icon_background_padding 0x7f070012 -int dimen notification_small_icon_size_as_large 0x7f070013 -int dimen notification_subtext_size 0x7f070014 -int dimen notification_top_pad 0x7f070015 -int dimen notification_top_pad_large_text 0x7f070016 -int dimen upsdk_margin_l 0x7f070017 -int dimen upsdk_margin_m 0x7f070018 -int dimen upsdk_margin_xs 0x7f070019 -int dimen upsdk_master_body_2 0x7f07001a -int dimen upsdk_master_subtitle 0x7f07001b -int drawable common_full_open_on_phone 0x7f080001 -int drawable common_google_signin_btn_icon_dark 0x7f080002 -int drawable common_google_signin_btn_icon_dark_focused 0x7f080003 -int drawable common_google_signin_btn_icon_dark_normal 0x7f080004 -int drawable common_google_signin_btn_icon_dark_normal_background 0x7f080005 -int drawable common_google_signin_btn_icon_disabled 0x7f080006 -int drawable common_google_signin_btn_icon_light 0x7f080007 -int drawable common_google_signin_btn_icon_light_focused 0x7f080008 -int drawable common_google_signin_btn_icon_light_normal 0x7f080009 -int drawable common_google_signin_btn_icon_light_normal_background 0x7f08000a -int drawable common_google_signin_btn_text_dark 0x7f08000b -int drawable common_google_signin_btn_text_dark_focused 0x7f08000c -int drawable common_google_signin_btn_text_dark_normal 0x7f08000d -int drawable common_google_signin_btn_text_dark_normal_background 0x7f08000e -int drawable common_google_signin_btn_text_disabled 0x7f08000f -int drawable common_google_signin_btn_text_light 0x7f080010 -int drawable common_google_signin_btn_text_light_focused 0x7f080011 -int drawable common_google_signin_btn_text_light_normal 0x7f080012 -int drawable common_google_signin_btn_text_light_normal_background 0x7f080013 -int drawable googleg_disabled_color_18 0x7f080014 -int drawable googleg_standard_color_18 0x7f080015 -int drawable notification_action_background 0x7f080016 -int drawable notification_bg 0x7f080017 -int drawable notification_bg_low 0x7f080018 -int drawable notification_bg_low_normal 0x7f080019 -int drawable notification_bg_low_pressed 0x7f08001a -int drawable notification_bg_normal 0x7f08001b -int drawable notification_bg_normal_pressed 0x7f08001c -int drawable notification_icon_background 0x7f08001d -int drawable notification_template_icon_bg 0x7f08001e -int drawable notification_template_icon_low_bg 0x7f08001f -int drawable notification_tile_bg 0x7f080020 -int drawable notify_panel_notification_icon_bg 0x7f080021 -int drawable push_pure_close 0x7f080022 -int drawable stat_sys_third_app_notify 0x7f080023 -int drawable upsdk_cancel_bg 0x7f080024 -int drawable upsdk_cancel_normal 0x7f080025 -int drawable upsdk_cancel_pressed_bg 0x7f080026 -int drawable upsdk_third_download_bg 0x7f080027 -int id action 0x7f0b0001 -int id action_container 0x7f0b0002 -int id action_divider 0x7f0b0003 -int id action_image 0x7f0b0004 -int id action_text 0x7f0b0005 -int id actions 0x7f0b0006 -int id adjust_height 0x7f0b0007 -int id adjust_width 0x7f0b0008 -int id allsize_textview 0x7f0b0009 -int id appsize_textview 0x7f0b000a -int id async 0x7f0b000b -int id auto 0x7f0b000c -int id blocking 0x7f0b000d -int id bottom 0x7f0b000e -int id cancel_bg 0x7f0b000f -int id cancel_imageview 0x7f0b0010 -int id chronometer 0x7f0b0011 -int id content_layout 0x7f0b0012 -int id content_textview 0x7f0b0013 -int id dark 0x7f0b0014 -int id divider 0x7f0b0015 -int id download_info_progress 0x7f0b0016 -int id enable_service_text 0x7f0b0017 -int id end 0x7f0b0018 -int id forever 0x7f0b0019 -int id hms_message_text 0x7f0b001a -int id hms_progress_bar 0x7f0b001b -int id hms_progress_text 0x7f0b001c -int id icon 0x7f0b001d -int id icon_group 0x7f0b001e -int id icon_only 0x7f0b001f -int id info 0x7f0b0020 -int id italic 0x7f0b0021 -int id left 0x7f0b0022 -int id light 0x7f0b0023 -int id line1 0x7f0b0024 -int id line3 0x7f0b0025 -int id name_layout 0x7f0b0026 -int id name_textview 0x7f0b0027 -int id none 0x7f0b0028 -int id normal 0x7f0b0029 -int id notification_background 0x7f0b002a -int id notification_main_column 0x7f0b002b -int id notification_main_column_container 0x7f0b002c -int id push_big_bigtext_defaultView 0x7f0b002d -int id push_big_bigview_defaultView 0x7f0b002e -int id push_big_defaultView 0x7f0b002f -int id push_big_notification 0x7f0b0030 -int id push_big_notification_content 0x7f0b0031 -int id push_big_notification_date 0x7f0b0032 -int id push_big_notification_icon 0x7f0b0033 -int id push_big_notification_icon2 0x7f0b0034 -int id push_big_notification_title 0x7f0b0035 -int id push_big_pic_default_Content 0x7f0b0036 -int id push_big_text_notification_area 0x7f0b0037 -int id push_pure_bigview_banner 0x7f0b0038 -int id push_pure_bigview_expanded 0x7f0b0039 -int id push_pure_close 0x7f0b003a -int id right 0x7f0b003b -int id right_icon 0x7f0b003c -int id right_side 0x7f0b003d -int id scroll_layout 0x7f0b003e -int id size_layout 0x7f0b003f -int id standard 0x7f0b0040 -int id start 0x7f0b0041 -int id tag_transition_group 0x7f0b0042 -int id tag_unhandled_key_event_manager 0x7f0b0043 -int id tag_unhandled_key_listeners 0x7f0b0044 -int id text 0x7f0b0045 -int id text2 0x7f0b0046 -int id third_app_dl_progress_text 0x7f0b0047 -int id third_app_dl_progressbar 0x7f0b0048 -int id third_app_warn_text 0x7f0b0049 -int id time 0x7f0b004a -int id title 0x7f0b004b -int id top 0x7f0b004c -int id version_layout 0x7f0b004d -int id version_textview 0x7f0b004e -int id wide 0x7f0b004f -int integer google_play_services_version 0x7f0c0001 -int integer rc_disappear_interval 0x7f0c0002 -int integer rc_image_quality 0x7f0c0003 -int integer rc_image_size 0x7f0c0004 -int integer rc_location_thumb_height 0x7f0c0005 -int integer rc_location_thumb_quality 0x7f0c0006 -int integer rc_location_thumb_width 0x7f0c0007 -int integer rc_max_original_image_size 0x7f0c0008 -int integer rc_resume_file_transfer_size_each_slice 0x7f0c0009 -int integer rc_sight_compress_height 0x7f0c000a -int integer rc_sight_compress_width 0x7f0c000b -int integer rc_thumb_compress_min_size 0x7f0c000c -int integer rc_thumb_compress_size 0x7f0c000d -int integer rc_thumb_quality 0x7f0c000e -int integer status_bar_notification_info_maxnum 0x7f0c000f -int layout activity_endisable_service 0x7f0e0001 -int layout hms_download_progress 0x7f0e0002 -int layout notification_action 0x7f0e0003 -int layout notification_action_tombstone 0x7f0e0004 -int layout notification_template_custom_big 0x7f0e0005 -int layout notification_template_icon_group 0x7f0e0006 -int layout notification_template_part_chronometer 0x7f0e0007 -int layout notification_template_part_time 0x7f0e0008 -int layout push_expandable_big_image_notification 0x7f0e0009 -int layout push_expandable_big_text_notification 0x7f0e000a -int layout push_pure_pic_notification_f6 0x7f0e000b -int layout push_pure_pic_notification_f7 0x7f0e000c -int layout push_pure_pic_notification_f8 0x7f0e000d -int layout push_pure_pic_notification_f9 0x7f0e000e -int layout push_pure_pic_notification_f9_275 0x7f0e000f -int layout upsdk_app_dl_progress_dialog 0x7f0e0010 -int layout upsdk_ota_update_view 0x7f0e0011 -int string app_name 0x7f140001 -int string common_google_play_services_enable_button 0x7f140002 -int string common_google_play_services_enable_text 0x7f140003 -int string common_google_play_services_enable_title 0x7f140004 -int string common_google_play_services_install_button 0x7f140005 -int string common_google_play_services_install_text 0x7f140006 -int string common_google_play_services_install_title 0x7f140007 -int string common_google_play_services_notification_channel_name 0x7f140008 -int string common_google_play_services_notification_ticker 0x7f140009 -int string common_google_play_services_unknown_issue 0x7f14000a -int string common_google_play_services_unsupported_text 0x7f14000b -int string common_google_play_services_update_button 0x7f14000c -int string common_google_play_services_update_text 0x7f14000d -int string common_google_play_services_update_title 0x7f14000e -int string common_google_play_services_updating_text 0x7f14000f -int string common_google_play_services_wear_update_text 0x7f140010 -int string common_open_on_phone 0x7f140011 -int string common_signin_button_text 0x7f140012 -int string common_signin_button_text_long 0x7f140013 -int string fcm_fallback_notification_channel_label 0x7f140014 -int string gcm_fallback_notification_channel_label 0x7f140015 -int string hms_abort 0x7f140016 -int string hms_abort_message 0x7f140017 -int string hms_bindfaildlg_message 0x7f140018 -int string hms_bindfaildlg_title 0x7f140019 -int string hms_cancel 0x7f14001a -int string hms_check_failure 0x7f14001b -int string hms_checking 0x7f14001c -int string hms_confirm 0x7f14001d -int string hms_download_failure 0x7f14001e -int string hms_download_no_space 0x7f14001f -int string hms_download_retry 0x7f140020 -int string hms_downloading_loading 0x7f140021 -int string hms_install 0x7f140022 -int string hms_install_message 0x7f140023 -int string hms_push_channel 0x7f140024 -int string hms_push_google 0x7f140025 -int string hms_push_vmall 0x7f140026 -int string hms_retry 0x7f140027 -int string hms_update 0x7f140028 -int string hms_update_continue 0x7f140029 -int string hms_update_message 0x7f14002a -int string hms_update_message_new 0x7f14002b -int string hms_update_nettype 0x7f14002c -int string hms_update_title 0x7f14002d -int string push_cat_body 0x7f14002e -int string push_cat_head 0x7f14002f -int string push_heartbeat_timer 0x7f140030 -int string rc_heartbeat_acquire_time 0x7f140031 -int string rc_heartbeat_timer 0x7f140032 -int string rc_init_failed 0x7f140033 -int string rc_location_sharing_ended 0x7f140034 -int string rc_media_message_default_save_path 0x7f140035 -int string rc_notification_channel_name 0x7f140036 -int string rc_notification_new_msg 0x7f140037 -int string rc_notification_new_plural_msg 0x7f140038 -int string rc_notification_ticker_text 0x7f140039 -int string rc_quit_custom_service 0x7f14003a -int string rc_receive_location_share_msg 0x7f14003b -int string status_bar_notification_info_overflow 0x7f14003c -int string system_default_channel 0x7f14003d -int string upsdk_app_download_info_new 0x7f14003e -int string upsdk_app_download_installing 0x7f14003f -int string upsdk_app_size 0x7f140040 -int string upsdk_app_version 0x7f140041 -int string upsdk_appstore_install 0x7f140042 -int string upsdk_apptouch_store_url 0x7f140043 -int string upsdk_cancel 0x7f140044 -int string upsdk_checking_update_prompt 0x7f140045 -int string upsdk_choice_update 0x7f140046 -int string upsdk_detail 0x7f140047 -int string upsdk_getting_message_fail_prompt_toast 0x7f140048 -int string upsdk_mobile_dld_warn 0x7f140049 -int string upsdk_no_available_network_prompt_toast 0x7f14004a -int string upsdk_ota_app_name 0x7f14004b -int string upsdk_ota_cancel 0x7f14004c -int string upsdk_ota_force_cancel_new 0x7f14004d -int string upsdk_ota_notify_updatebtn 0x7f14004e -int string upsdk_ota_title 0x7f14004f -int string upsdk_storage_utils 0x7f140050 -int string upsdk_store_url 0x7f140051 -int string upsdk_third_app_dl_cancel_download_prompt_ex 0x7f140052 -int string upsdk_third_app_dl_install_failed 0x7f140053 -int string upsdk_third_app_dl_sure_cancel_download 0x7f140054 -int string upsdk_update_check_no_new_version 0x7f140055 -int style TextAppearance_Compat_Notification 0x7f150001 -int style TextAppearance_Compat_Notification_Info 0x7f150002 -int style TextAppearance_Compat_Notification_Line2 0x7f150003 -int style TextAppearance_Compat_Notification_Time 0x7f150004 -int style TextAppearance_Compat_Notification_Title 0x7f150005 -int style Widget_Compat_NotificationActionContainer 0x7f150006 -int style Widget_Compat_NotificationActionText 0x7f150007 -int style Widget_Support_CoordinatorLayout 0x7f150008 -int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 } -int styleable ColorStateListItem_alpha 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_android_color 2 -int[] styleable CoordinatorLayout { 0x7f040012, 0x7f04001a } -int styleable CoordinatorLayout_keylines 0 -int styleable CoordinatorLayout_statusBarBackground 1 -int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018 } -int styleable CoordinatorLayout_Layout_android_layout_gravity 0 -int styleable CoordinatorLayout_Layout_layout_anchor 1 -int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 -int styleable CoordinatorLayout_Layout_layout_behavior 3 -int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 -int styleable CoordinatorLayout_Layout_layout_insetEdge 5 -int styleable CoordinatorLayout_Layout_layout_keyline 6 -int[] styleable FontFamily { 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040006, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f04001b } -int styleable FontFamilyFont_android_font 0 -int styleable FontFamilyFont_android_fontStyle 1 -int styleable FontFamilyFont_android_fontVariationSettings 2 -int styleable FontFamilyFont_android_fontWeight 3 -int styleable FontFamilyFont_android_ttcIndex 4 -int styleable FontFamilyFont_font 5 -int styleable FontFamilyFont_fontStyle 6 -int styleable FontFamilyFont_fontVariationSettings 7 -int styleable FontFamilyFont_fontWeight 8 -int styleable FontFamilyFont_ttcIndex 9 -int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } -int styleable GradientColor_android_centerColor 0 -int styleable GradientColor_android_centerX 1 -int styleable GradientColor_android_centerY 2 -int styleable GradientColor_android_endColor 3 -int styleable GradientColor_android_endX 4 -int styleable GradientColor_android_endY 5 -int styleable GradientColor_android_gradientRadius 6 -int styleable GradientColor_android_startColor 7 -int styleable GradientColor_android_startX 8 -int styleable GradientColor_android_startY 9 -int styleable GradientColor_android_tileMode 10 -int styleable GradientColor_android_type 11 -int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } -int styleable GradientColorItem_android_color 0 -int styleable GradientColorItem_android_offset 1 -int[] styleable LoadingImageView { 0x7f040003, 0x7f040010, 0x7f040011 } -int styleable LoadingImageView_circleCrop 0 -int styleable LoadingImageView_imageAspectRatio 1 -int styleable LoadingImageView_imageAspectRatioAdjust 2 -int[] styleable SignInButton { 0x7f040002, 0x7f040004, 0x7f040019 } -int styleable SignInButton_buttonSize 0 -int styleable SignInButton_colorScheme 1 -int styleable SignInButton_scopeUris 2 diff --git a/imlib/build/outputs/logs/manifest-merger-debug-report.txt b/imlib/build/outputs/logs/manifest-merger-debug-report.txt deleted file mode 100644 index e58bf0d..0000000 --- a/imlib/build/outputs/logs/manifest-merger-debug-report.txt +++ /dev/null @@ -1,157 +0,0 @@ --- Merging decision tree log --- -manifest -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:1:1-75:12 -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:1:1-75:12 -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:1:1-75:12 -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:1:1-75:12 -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:1:1-75:12 - package - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:3:5-30 - INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - android:versionName - INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:1:1-75:12 - INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - xmlns:tools - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:2:5-51 - xmlns:android - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:1:11-69 -uses-permission#android.permission.WRITE_EXTERNAL_STORAGE -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:6:5-81 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:6:22-78 -uses-permission#android.permission.READ_EXTERNAL_STORAGE -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:7:5-80 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:7:22-77 -uses-permission#android.permission.INTERNET -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:9:5-67 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:9:22-64 -uses-permission#android.permission.ACCESS_NETWORK_STATE -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:10:5-79 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:10:22-76 -uses-permission#android.permission.ACCESS_WIFI_STATE -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:11:5-76 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:11:22-73 -uses-permission#android.permission.WAKE_LOCK -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:13:5-68 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:13:22-65 -uses-permission#${applicationId}.permission.RONG_ACCESS_RECEIVER -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:17:5-88 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:17:22-85 -permission#${applicationId}.permission.RONG_ACCESS_RECEIVER -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:20:5-22:47 - android:protectionLevel - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:22:9-44 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:21:9-72 -application -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:24:5-73:19 -service#io.rong.imlib.ipc.RongService -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:25:9-27:38 - android:process - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:27:13-35 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:26:13-57 -receiver#io.rong.imlib.ConnectChangeReceiver -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:29:9-72 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:29:19-69 -receiver#io.rong.imlib.HeartbeatReceiver -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:31:9-33:38 - android:process - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:33:13-35 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:32:13-59 -service#io.rong.push.rongpush.PushService -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:36:9-40:46 - android:process - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:40:13-43 - android:exported - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:38:13-36 - android:permission - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:39:13-69 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:37:13-61 -receiver#io.rong.push.rongpush.PushReceiver -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:43:9-59:20 - android:process - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:46:13-43 - android:exported - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:45:13-36 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:44:13-62 -intent-filter#action:name:android.net.conn.CONNECTIVITY_CHANGE+action:name:io.rong.push.intent.action.HEART_BEAT -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:48:13-51:29 - tools:node - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:48:29-51 -action#io.rong.push.intent.action.HEART_BEAT -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:49:17-80 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:49:25-77 -action#android.net.conn.CONNECTIVITY_CHANGE -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:50:17-79 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:50:25-76 -intent-filter#action:name:android.intent.action.ACTION_POWER_CONNECTED+action:name:android.intent.action.ACTION_POWER_DISCONNECTED+action:name:android.intent.action.USER_PRESENT -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:54:13-58:29 - tools:node - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:54:28-50 -action#android.intent.action.USER_PRESENT -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:55:17-77 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:55:25-74 -action#android.intent.action.ACTION_POWER_CONNECTED -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:56:17-87 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:56:25-84 -action#android.intent.action.ACTION_POWER_DISCONNECTED -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:57:17-90 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:57:25-87 -activity#io.rong.push.notification.RongBridgeActivity -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:61:9-72:20 - android:enabled - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:63:13-35 - android:launchMode - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:65:13-48 - android:exported - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:64:13-36 - android:theme - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:66:13-72 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:62:13-72 -intent-filter#action:name:android.intent.action.VIEW+action:name:io.rong.push.notification.RongBridgeActivity+category:name:android.intent.category.DEFAULT -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:67:13-71:29 -action#android.intent.action.VIEW -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:68:17-68 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:68:25-66 -action#io.rong.push.notification.RongBridgeActivity -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:69:17-86 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:69:25-84 -category#android.intent.category.DEFAULT -ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:70:17-76 - android:name - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml:70:27-73 -uses-sdk -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml reason: use-sdk injection requested -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml -INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - android:targetSdkVersion - INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - android:minSdkVersion - INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - ADDED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml - INJECTED from D:\StudioProjects\UnionMedTV\imlib\AndroidManifest.xml diff --git a/rtclib/build/.transforms/9f838db08deb599dc4e6a29ac5eaaf98.bin b/rtclib/build/.transforms/9f838db08deb599dc4e6a29ac5eaaf98.bin deleted file mode 100644 index 0d259dd..0000000 --- a/rtclib/build/.transforms/9f838db08deb599dc4e6a29ac5eaaf98.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/rtclib/build/.transforms/9f838db08deb599dc4e6a29ac5eaaf98/classes/classes.dex b/rtclib/build/.transforms/9f838db08deb599dc4e6a29ac5eaaf98/classes/classes.dex deleted file mode 100644 index d7e28b3..0000000 Binary files a/rtclib/build/.transforms/9f838db08deb599dc4e6a29ac5eaaf98/classes/classes.dex and /dev/null differ diff --git a/rtclib/build/.transforms/ba246ea31ac3dbd69b68158593db4c98.bin b/rtclib/build/.transforms/ba246ea31ac3dbd69b68158593db4c98.bin deleted file mode 100644 index 0d259dd..0000000 --- a/rtclib/build/.transforms/ba246ea31ac3dbd69b68158593db4c98.bin +++ /dev/null @@ -1 +0,0 @@ -o/classes diff --git a/rtclib/build/.transforms/ba246ea31ac3dbd69b68158593db4c98/classes/classes.dex b/rtclib/build/.transforms/ba246ea31ac3dbd69b68158593db4c98/classes/classes.dex deleted file mode 100644 index 9e85122..0000000 Binary files a/rtclib/build/.transforms/ba246ea31ac3dbd69b68158593db4c98/classes/classes.dex and /dev/null differ diff --git a/rtclib/build/generated/source/buildConfig/debug/cn/rongcloud/rtclib/BuildConfig.java b/rtclib/build/generated/source/buildConfig/debug/cn/rongcloud/rtclib/BuildConfig.java deleted file mode 100644 index 97de774..0000000 --- a/rtclib/build/generated/source/buildConfig/debug/cn/rongcloud/rtclib/BuildConfig.java +++ /dev/null @@ -1,18 +0,0 @@ -/** - * Automatically generated file. DO NOT MODIFY - */ -package cn.rongcloud.rtclib; - -public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String LIBRARY_PACKAGE_NAME = "cn.rongcloud.rtclib"; - /** - * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME - */ - @Deprecated - public static final String APPLICATION_ID = "cn.rongcloud.rtclib"; - public static final String BUILD_TYPE = "debug"; - public static final String FLAVOR = ""; - public static final int VERSION_CODE = -1; - public static final String VERSION_NAME = "5.2.1.51"; -} diff --git a/rtclib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/rtclib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml deleted file mode 100644 index 0392f5e..0000000 --- a/rtclib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/rtclib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/rtclib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json deleted file mode 100644 index 5b5309e..0000000 --- a/rtclib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":-1,"versionName":"5.2.1.51","enabled":true,"outputFile":"rtclib-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"cn.rongcloud.rtclib","split":""}}] \ No newline at end of file diff --git a/rtclib/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/rtclib/build/intermediates/annotation_processor_list/debug/annotationProcessors.json deleted file mode 100644 index 9e26dfe..0000000 --- a/rtclib/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/rtclib/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/rtclib/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt deleted file mode 100644 index e69de29..0000000 diff --git a/rtclib/build/intermediates/compile_library_classes/debug/classes.jar b/rtclib/build/intermediates/compile_library_classes/debug/classes.jar deleted file mode 100644 index d8daeba..0000000 Binary files a/rtclib/build/intermediates/compile_library_classes/debug/classes.jar and /dev/null differ diff --git a/rtclib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/rtclib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar deleted file mode 100644 index fbe7399..0000000 Binary files a/rtclib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar and /dev/null differ diff --git a/rtclib/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/rtclib/build/intermediates/incremental/debug-mergeJavaRes/merge-state deleted file mode 100644 index 2eec668..0000000 Binary files a/rtclib/build/intermediates/incremental/debug-mergeJavaRes/merge-state and /dev/null differ diff --git a/rtclib/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fslWmVG5TLKOjCLPa1wWu481Ek8= b/rtclib/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fslWmVG5TLKOjCLPa1wWu481Ek8= deleted file mode 100644 index d23eff2..0000000 Binary files a/rtclib/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fslWmVG5TLKOjCLPa1wWu481Ek8= and /dev/null differ diff --git a/rtclib/build/intermediates/incremental/debug-mergeNativeLibs/merge-state b/rtclib/build/intermediates/incremental/debug-mergeNativeLibs/merge-state deleted file mode 100644 index f75a6ee..0000000 Binary files a/rtclib/build/intermediates/incremental/debug-mergeNativeLibs/merge-state and /dev/null differ diff --git a/rtclib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/rtclib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml deleted file mode 100644 index c3dc7d0..0000000 --- a/rtclib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/rtclib/build/intermediates/incremental/mergeDebugShaders/merger.xml b/rtclib/build/intermediates/incremental/mergeDebugShaders/merger.xml deleted file mode 100644 index 65083b8..0000000 --- a/rtclib/build/intermediates/incremental/mergeDebugShaders/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/rtclib/build/intermediates/incremental/packageDebugAssets/merger.xml b/rtclib/build/intermediates/incremental/packageDebugAssets/merger.xml deleted file mode 100644 index aa64a84..0000000 --- a/rtclib/build/intermediates/incremental/packageDebugAssets/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/rtclib/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/rtclib/build/intermediates/incremental/packageDebugResources/compile-file-map.properties deleted file mode 100644 index 3da1126..0000000 --- a/rtclib/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +++ /dev/null @@ -1 +0,0 @@ -#Tue Aug 01 16:41:57 CST 2023 diff --git a/rtclib/build/intermediates/incremental/packageDebugResources/merger.xml b/rtclib/build/intermediates/incremental/packageDebugResources/merger.xml deleted file mode 100644 index cbdf305..0000000 --- a/rtclib/build/intermediates/incremental/packageDebugResources/merger.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongRTCLib.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongRTCLib.so deleted file mode 100644 index 8db21f1..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongRTCSupport.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongRTCSupport.so deleted file mode 100644 index e8016c2..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavcodec.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavcodec.so deleted file mode 100644 index 0bf8ab7..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavfilter.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavfilter.so deleted file mode 100644 index ee1b4b3..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavformat.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavformat.so deleted file mode 100644 index b3a112e..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavutil.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavutil.so deleted file mode 100644 index 282b8b5..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libswresample.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libswresample.so deleted file mode 100644 index d258b81..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libswscale.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libswscale.so deleted file mode 100644 index 33fd003..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongRTCLib.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongRTCLib.so deleted file mode 100644 index ba49585..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongRTCSupport.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongRTCSupport.so deleted file mode 100644 index b4f0b06..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavcodec.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavcodec.so deleted file mode 100644 index e820dcb..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavfilter.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavfilter.so deleted file mode 100644 index e7ec65d..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavformat.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavformat.so deleted file mode 100644 index ffc8a2a..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavutil.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavutil.so deleted file mode 100644 index 9771497..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libswresample.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libswresample.so deleted file mode 100644 index df2aaa2..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libswscale.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libswscale.so deleted file mode 100644 index abb8cc3..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libRongRTCLib.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libRongRTCLib.so deleted file mode 100644 index 2f62fc1..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libRongRTCSupport.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libRongRTCSupport.so deleted file mode 100644 index f926b09..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavcodec.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavcodec.so deleted file mode 100644 index d75767e..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavfilter.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavfilter.so deleted file mode 100644 index 34d9a1c..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavformat.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavformat.so deleted file mode 100644 index c7bc06c..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavutil.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavutil.so deleted file mode 100644 index b587e70..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libswresample.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libswresample.so deleted file mode 100644 index b02170d..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libswscale.so b/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libswscale.so deleted file mode 100644 index f1d0a80..0000000 Binary files a/rtclib/build/intermediates/intermediate-jars/debug/jni/x86/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/javac/debug/classes/cn/rongcloud/rtclib/BuildConfig.class b/rtclib/build/intermediates/javac/debug/classes/cn/rongcloud/rtclib/BuildConfig.class deleted file mode 100644 index a739a03..0000000 Binary files a/rtclib/build/intermediates/javac/debug/classes/cn/rongcloud/rtclib/BuildConfig.class and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongRTCLib.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongRTCLib.so deleted file mode 100644 index 8db21f1..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongRTCSupport.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongRTCSupport.so deleted file mode 100644 index e8016c2..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavcodec.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavcodec.so deleted file mode 100644 index 0bf8ab7..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavfilter.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavfilter.so deleted file mode 100644 index ee1b4b3..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavformat.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavformat.so deleted file mode 100644 index b3a112e..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavutil.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavutil.so deleted file mode 100644 index 282b8b5..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libswresample.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libswresample.so deleted file mode 100644 index d258b81..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libswscale.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libswscale.so deleted file mode 100644 index 33fd003..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongRTCLib.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongRTCLib.so deleted file mode 100644 index ba49585..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongRTCSupport.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongRTCSupport.so deleted file mode 100644 index b4f0b06..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavcodec.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavcodec.so deleted file mode 100644 index e820dcb..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavfilter.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavfilter.so deleted file mode 100644 index e7ec65d..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavformat.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavformat.so deleted file mode 100644 index ffc8a2a..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavutil.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavutil.so deleted file mode 100644 index 9771497..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libswresample.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libswresample.so deleted file mode 100644 index df2aaa2..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libswscale.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libswscale.so deleted file mode 100644 index abb8cc3..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongRTCLib.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongRTCLib.so deleted file mode 100644 index 2f62fc1..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongRTCSupport.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongRTCSupport.so deleted file mode 100644 index f926b09..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavcodec.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavcodec.so deleted file mode 100644 index d75767e..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavfilter.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavfilter.so deleted file mode 100644 index 34d9a1c..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavformat.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavformat.so deleted file mode 100644 index c7bc06c..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavutil.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavutil.so deleted file mode 100644 index b587e70..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libswresample.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libswresample.so deleted file mode 100644 index b02170d..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libswscale.so b/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libswscale.so deleted file mode 100644 index f1d0a80..0000000 Binary files a/rtclib/build/intermediates/library_and_local_jars_jni/debug/x86/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/library_java_res/debug/res.jar b/rtclib/build/intermediates/library_java_res/debug/res.jar deleted file mode 100644 index 15cb0ec..0000000 Binary files a/rtclib/build/intermediates/library_java_res/debug/res.jar and /dev/null differ diff --git a/rtclib/build/intermediates/library_manifest/debug/AndroidManifest.xml b/rtclib/build/intermediates/library_manifest/debug/AndroidManifest.xml deleted file mode 100644 index 0392f5e..0000000 --- a/rtclib/build/intermediates/library_manifest/debug/AndroidManifest.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/rtclib/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/rtclib/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt deleted file mode 100644 index 78ac5b8..0000000 --- a/rtclib/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt +++ /dev/null @@ -1,2 +0,0 @@ -R_DEF: Internal format may change without notice -local diff --git a/rtclib/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/rtclib/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt deleted file mode 100644 index 02593e9..0000000 --- a/rtclib/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +++ /dev/null @@ -1,66 +0,0 @@ -1 -2 -5 -6 D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml -8 android:targetSdkVersion="31" /> -8-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml -9 -10 -10-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:4:5-74 -10-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:4:22-71 -11 -11-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:5:5-68 -11-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:5:22-65 -12 -12-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:6:5-76 -12-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:6:22-73 -13 -13-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:7:5-65 -13-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:7:22-62 -14 -14-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:8:5-79 -14-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:8:22-76 -15 -15-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:9:5-80 -15-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:9:22-77 -16 -16-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:10:5-71 -16-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:10:22-68 -17 -17-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:11:5-67 -17-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:11:22-64 -18 -18-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:12:5-81 -18-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:12:22-78 -19 -19-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:13:5-79 -19-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:13:22-76 -20 -20-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:14:5-76 -20-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:14:22-73 -21 -21-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:15:5-75 -21-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:15:22-72 -22 -22-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:16:5-80 -22-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:16:22-77 -23 -23-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:17:5-83 -23-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:17:22-80 -24 -25 -25-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:19:5-24:19 -25-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:20:9-35 -26 D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:21:9-23:64 -27 android:name="rc.rtclib" -27-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:22:13-37 -28 android:value="cn.rongcloud.rtc.api.RCRTCEngine" /> -28-->D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:23:13-61 -29 -30 -31 diff --git a/rtclib/build/intermediates/merged_java_res/debug/out.jar b/rtclib/build/intermediates/merged_java_res/debug/out.jar deleted file mode 100644 index 15cb0ec..0000000 Binary files a/rtclib/build/intermediates/merged_java_res/debug/out.jar and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongRTCLib.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongRTCLib.so deleted file mode 100644 index 7691a8a..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongRTCSupport.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongRTCSupport.so deleted file mode 100644 index dc85c8e..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavcodec.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavcodec.so deleted file mode 100644 index db7f756..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavfilter.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavfilter.so deleted file mode 100644 index 71f2129..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavformat.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavformat.so deleted file mode 100644 index 905fdbe..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavutil.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavutil.so deleted file mode 100644 index 4542e45..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libswresample.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libswresample.so deleted file mode 100644 index 15950b6..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libswscale.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libswscale.so deleted file mode 100644 index 0ce0bfb..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongRTCLib.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongRTCLib.so deleted file mode 100644 index fb3a1ec..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongRTCSupport.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongRTCSupport.so deleted file mode 100644 index 1d2e14d..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavcodec.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavcodec.so deleted file mode 100644 index 7e7e484..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavfilter.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavfilter.so deleted file mode 100644 index ff9ec1f..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavformat.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavformat.so deleted file mode 100644 index e2d2b39..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavutil.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavutil.so deleted file mode 100644 index ae34401..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libswresample.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libswresample.so deleted file mode 100644 index cdeac96..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libswscale.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libswscale.so deleted file mode 100644 index 43268f9..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/rong_rtclib_5.2.1.51.jar b/rtclib/build/intermediates/merged_jni_libs/debug/out/rong_rtclib_5.2.1.51.jar deleted file mode 100644 index d23eff2..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/rong_rtclib_5.2.1.51.jar and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libRongRTCLib.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libRongRTCLib.so deleted file mode 100644 index a20b49f..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libRongRTCSupport.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libRongRTCSupport.so deleted file mode 100644 index cda329c..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavcodec.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavcodec.so deleted file mode 100644 index f13bbb5..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavfilter.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavfilter.so deleted file mode 100644 index b0ddbea..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavformat.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavformat.so deleted file mode 100644 index 8a2dee4..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavutil.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavutil.so deleted file mode 100644 index d434c63..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libswresample.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libswresample.so deleted file mode 100644 index 61fd919..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libswscale.so b/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libswscale.so deleted file mode 100644 index 7c60fc3..0000000 Binary files a/rtclib/build/intermediates/merged_jni_libs/debug/out/x86/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_manifests/debug/output.json b/rtclib/build/intermediates/merged_manifests/debug/output.json deleted file mode 100644 index eda181e..0000000 --- a/rtclib/build/intermediates/merged_manifests/debug/output.json +++ /dev/null @@ -1 +0,0 @@ -[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":-1,"versionName":"5.2.1.51","enabled":true,"outputFile":"rtclib-debug.aar","fullName":"debug","baseName":"debug"},"path":"..\\..\\library_manifest\\debug\\AndroidManifest.xml","properties":{"packageId":"cn.rongcloud.rtclib","split":""}}] \ No newline at end of file diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongRTCLib.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongRTCLib.so deleted file mode 100644 index 7691a8a..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongRTCSupport.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongRTCSupport.so deleted file mode 100644 index dc85c8e..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavcodec.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavcodec.so deleted file mode 100644 index db7f756..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavfilter.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavfilter.so deleted file mode 100644 index 71f2129..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavformat.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavformat.so deleted file mode 100644 index 905fdbe..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavutil.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavutil.so deleted file mode 100644 index 4542e45..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libswresample.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libswresample.so deleted file mode 100644 index 15950b6..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libswscale.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libswscale.so deleted file mode 100644 index 0ce0bfb..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongRTCLib.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongRTCLib.so deleted file mode 100644 index fb3a1ec..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongRTCSupport.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongRTCSupport.so deleted file mode 100644 index 1d2e14d..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavcodec.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavcodec.so deleted file mode 100644 index 7e7e484..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavfilter.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavfilter.so deleted file mode 100644 index ff9ec1f..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavformat.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavformat.so deleted file mode 100644 index e2d2b39..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavutil.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavutil.so deleted file mode 100644 index ae34401..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libswresample.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libswresample.so deleted file mode 100644 index cdeac96..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libswscale.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libswscale.so deleted file mode 100644 index 43268f9..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongRTCLib.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongRTCLib.so deleted file mode 100644 index a20b49f..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongRTCSupport.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongRTCSupport.so deleted file mode 100644 index cda329c..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavcodec.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavcodec.so deleted file mode 100644 index f13bbb5..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavfilter.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavfilter.so deleted file mode 100644 index b0ddbea..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavformat.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavformat.so deleted file mode 100644 index 8a2dee4..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavutil.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavutil.so deleted file mode 100644 index d434c63..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libswresample.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libswresample.so deleted file mode 100644 index 61fd919..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libswscale.so b/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libswscale.so deleted file mode 100644 index 7c60fc3..0000000 Binary files a/rtclib/build/intermediates/merged_native_libs/debug/out/lib/x86/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/packaged-classes/debug/classes.jar b/rtclib/build/intermediates/packaged-classes/debug/classes.jar deleted file mode 100644 index d8daeba..0000000 Binary files a/rtclib/build/intermediates/packaged-classes/debug/classes.jar and /dev/null differ diff --git a/rtclib/build/intermediates/packaged-classes/debug/libs/rong_rtclib_5.2.1.51.jar b/rtclib/build/intermediates/packaged-classes/debug/libs/rong_rtclib_5.2.1.51.jar deleted file mode 100644 index f93ccfd..0000000 Binary files a/rtclib/build/intermediates/packaged-classes/debug/libs/rong_rtclib_5.2.1.51.jar and /dev/null differ diff --git a/rtclib/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/rtclib/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt deleted file mode 100644 index ab3e001..0000000 --- a/rtclib/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt +++ /dev/null @@ -1,332 +0,0 @@ -cn.rongcloud.rtclib -attr alpha -attr buttonSize -attr circleCrop -attr colorScheme -attr coordinatorLayoutStyle -attr font -attr fontProviderAuthority -attr fontProviderCerts -attr fontProviderFetchStrategy -attr fontProviderFetchTimeout -attr fontProviderPackage -attr fontProviderQuery -attr fontStyle -attr fontVariationSettings -attr fontWeight -attr imageAspectRatio -attr imageAspectRatioAdjust -attr keylines -attr layout_anchor -attr layout_anchorGravity -attr layout_behavior -attr layout_dodgeInsetEdges -attr layout_insetEdge -attr layout_keyline -attr scopeUris -attr statusBarBackground -attr ttcIndex -bool rc_extension_history -bool rc_q_storage_mode_enable -bool rc_secure_shared_preferences -bool rc_typing_status -color common_google_signin_btn_text_dark -color common_google_signin_btn_text_dark_default -color common_google_signin_btn_text_dark_disabled -color common_google_signin_btn_text_dark_focused -color common_google_signin_btn_text_dark_pressed -color common_google_signin_btn_text_light -color common_google_signin_btn_text_light_default -color common_google_signin_btn_text_light_disabled -color common_google_signin_btn_text_light_focused -color common_google_signin_btn_text_light_pressed -color common_google_signin_btn_tint -color emui_color_gray_1 -color emui_color_gray_10 -color emui_color_gray_7 -color notification_action_color_filter -color notification_icon_bg_color -color ripple_material_light -color secondary_text_default_material_light -color upsdk_color_gray_1 -color upsdk_color_gray_10 -color upsdk_color_gray_7 -dimen compat_button_inset_horizontal_material -dimen compat_button_inset_vertical_material -dimen compat_button_padding_horizontal_material -dimen compat_button_padding_vertical_material -dimen compat_control_corner_material -dimen compat_notification_large_icon_max_height -dimen compat_notification_large_icon_max_width -dimen notification_action_icon_size -dimen notification_action_text_size -dimen notification_big_circle_margin -dimen notification_content_margin_start -dimen notification_large_icon_height -dimen notification_large_icon_width -dimen notification_main_column_padding_top -dimen notification_media_narrow_margin -dimen notification_right_icon_size -dimen notification_right_side_padding_top -dimen notification_small_icon_background_padding -dimen notification_small_icon_size_as_large -dimen notification_subtext_size -dimen notification_top_pad -dimen notification_top_pad_large_text -dimen upsdk_margin_l -dimen upsdk_margin_m -dimen upsdk_margin_xs -dimen upsdk_master_body_2 -dimen upsdk_master_subtitle -drawable common_full_open_on_phone -drawable common_google_signin_btn_icon_dark -drawable common_google_signin_btn_icon_dark_focused -drawable common_google_signin_btn_icon_dark_normal -drawable common_google_signin_btn_icon_dark_normal_background -drawable common_google_signin_btn_icon_disabled -drawable common_google_signin_btn_icon_light -drawable common_google_signin_btn_icon_light_focused -drawable common_google_signin_btn_icon_light_normal -drawable common_google_signin_btn_icon_light_normal_background -drawable common_google_signin_btn_text_dark -drawable common_google_signin_btn_text_dark_focused -drawable common_google_signin_btn_text_dark_normal -drawable common_google_signin_btn_text_dark_normal_background -drawable common_google_signin_btn_text_disabled -drawable common_google_signin_btn_text_light -drawable common_google_signin_btn_text_light_focused -drawable common_google_signin_btn_text_light_normal -drawable common_google_signin_btn_text_light_normal_background -drawable googleg_disabled_color_18 -drawable googleg_standard_color_18 -drawable notification_action_background -drawable notification_bg -drawable notification_bg_low -drawable notification_bg_low_normal -drawable notification_bg_low_pressed -drawable notification_bg_normal -drawable notification_bg_normal_pressed -drawable notification_icon_background -drawable notification_template_icon_bg -drawable notification_template_icon_low_bg -drawable notification_tile_bg -drawable notify_panel_notification_icon_bg -drawable push_pure_close -drawable stat_sys_third_app_notify -drawable upsdk_cancel_bg -drawable upsdk_cancel_normal -drawable upsdk_cancel_pressed_bg -drawable upsdk_third_download_bg -id action -id action_container -id action_divider -id action_image -id action_text -id actions -id adjust_height -id adjust_width -id allsize_textview -id appsize_textview -id async -id auto -id blocking -id bottom -id cancel_bg -id cancel_imageview -id chronometer -id content_layout -id content_textview -id dark -id divider -id download_info_progress -id enable_service_text -id end -id forever -id hms_message_text -id hms_progress_bar -id hms_progress_text -id icon -id icon_group -id icon_only -id info -id italic -id left -id light -id line1 -id line3 -id name_layout -id name_textview -id none -id normal -id notification_background -id notification_main_column -id notification_main_column_container -id push_big_bigtext_defaultView -id push_big_bigview_defaultView -id push_big_defaultView -id push_big_notification -id push_big_notification_content -id push_big_notification_date -id push_big_notification_icon -id push_big_notification_icon2 -id push_big_notification_title -id push_big_pic_default_Content -id push_big_text_notification_area -id push_pure_bigview_banner -id push_pure_bigview_expanded -id push_pure_close -id right -id right_icon -id right_side -id scroll_layout -id size_layout -id standard -id start -id tag_transition_group -id tag_unhandled_key_event_manager -id tag_unhandled_key_listeners -id text -id text2 -id third_app_dl_progress_text -id third_app_dl_progressbar -id third_app_warn_text -id time -id title -id top -id version_layout -id version_textview -id wide -integer google_play_services_version -integer rc_disappear_interval -integer rc_image_quality -integer rc_image_size -integer rc_location_thumb_height -integer rc_location_thumb_quality -integer rc_location_thumb_width -integer rc_max_original_image_size -integer rc_resume_file_transfer_size_each_slice -integer rc_sight_compress_height -integer rc_sight_compress_width -integer rc_thumb_compress_min_size -integer rc_thumb_compress_size -integer rc_thumb_quality -integer status_bar_notification_info_maxnum -layout activity_endisable_service -layout hms_download_progress -layout notification_action -layout notification_action_tombstone -layout notification_template_custom_big -layout notification_template_icon_group -layout notification_template_part_chronometer -layout notification_template_part_time -layout push_expandable_big_image_notification -layout push_expandable_big_text_notification -layout push_pure_pic_notification_f6 -layout push_pure_pic_notification_f7 -layout push_pure_pic_notification_f8 -layout push_pure_pic_notification_f9 -layout push_pure_pic_notification_f9_275 -layout upsdk_app_dl_progress_dialog -layout upsdk_ota_update_view -string app_name -string common_google_play_services_enable_button -string common_google_play_services_enable_text -string common_google_play_services_enable_title -string common_google_play_services_install_button -string common_google_play_services_install_text -string common_google_play_services_install_title -string common_google_play_services_notification_channel_name -string common_google_play_services_notification_ticker -string common_google_play_services_unknown_issue -string common_google_play_services_unsupported_text -string common_google_play_services_update_button -string common_google_play_services_update_text -string common_google_play_services_update_title -string common_google_play_services_updating_text -string common_google_play_services_wear_update_text -string common_open_on_phone -string common_signin_button_text -string common_signin_button_text_long -string fcm_fallback_notification_channel_label -string gcm_fallback_notification_channel_label -string hms_abort -string hms_abort_message -string hms_bindfaildlg_message -string hms_bindfaildlg_title -string hms_cancel -string hms_check_failure -string hms_checking -string hms_confirm -string hms_download_failure -string hms_download_no_space -string hms_download_retry -string hms_downloading_loading -string hms_install -string hms_install_message -string hms_push_channel -string hms_push_google -string hms_push_vmall -string hms_retry -string hms_update -string hms_update_continue -string hms_update_message -string hms_update_message_new -string hms_update_nettype -string hms_update_title -string push_cat_body -string push_cat_head -string push_heartbeat_timer -string rc_heartbeat_acquire_time -string rc_heartbeat_timer -string rc_init_failed -string rc_location_sharing_ended -string rc_media_message_default_save_path -string rc_notification_channel_name -string rc_notification_new_msg -string rc_notification_new_plural_msg -string rc_notification_ticker_text -string rc_quit_custom_service -string rc_receive_location_share_msg -string status_bar_notification_info_overflow -string system_default_channel -string upsdk_app_download_info_new -string upsdk_app_download_installing -string upsdk_app_size -string upsdk_app_version -string upsdk_appstore_install -string upsdk_apptouch_store_url -string upsdk_cancel -string upsdk_checking_update_prompt -string upsdk_choice_update -string upsdk_detail -string upsdk_getting_message_fail_prompt_toast -string upsdk_mobile_dld_warn -string upsdk_no_available_network_prompt_toast -string upsdk_ota_app_name -string upsdk_ota_cancel -string upsdk_ota_force_cancel_new -string upsdk_ota_notify_updatebtn -string upsdk_ota_title -string upsdk_storage_utils -string upsdk_store_url -string upsdk_third_app_dl_cancel_download_prompt_ex -string upsdk_third_app_dl_install_failed -string upsdk_third_app_dl_sure_cancel_download -string upsdk_update_check_no_new_version -style TextAppearance_Compat_Notification -style TextAppearance_Compat_Notification_Info -style TextAppearance_Compat_Notification_Line2 -style TextAppearance_Compat_Notification_Time -style TextAppearance_Compat_Notification_Title -style Widget_Compat_NotificationActionContainer -style Widget_Compat_NotificationActionText -style Widget_Support_CoordinatorLayout -styleable ColorStateListItem alpha android_alpha android_color -styleable CoordinatorLayout keylines statusBarBackground -styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline -styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery -styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex -styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type -styleable GradientColorItem android_color android_offset -styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust -styleable SignInButton buttonSize colorScheme scopeUris diff --git a/rtclib/build/intermediates/runtime_library_classes/debug/classes.jar b/rtclib/build/intermediates/runtime_library_classes/debug/classes.jar deleted file mode 100644 index d8daeba..0000000 Binary files a/rtclib/build/intermediates/runtime_library_classes/debug/classes.jar and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongRTCLib.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongRTCLib.so deleted file mode 100644 index 8db21f1..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongRTCSupport.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongRTCSupport.so deleted file mode 100644 index e8016c2..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavcodec.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavcodec.so deleted file mode 100644 index 0bf8ab7..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavfilter.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavfilter.so deleted file mode 100644 index ee1b4b3..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavformat.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavformat.so deleted file mode 100644 index b3a112e..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavutil.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavutil.so deleted file mode 100644 index 282b8b5..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libswresample.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libswresample.so deleted file mode 100644 index d258b81..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libswscale.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libswscale.so deleted file mode 100644 index 33fd003..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongRTCLib.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongRTCLib.so deleted file mode 100644 index ba49585..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongRTCSupport.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongRTCSupport.so deleted file mode 100644 index b4f0b06..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavcodec.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavcodec.so deleted file mode 100644 index e820dcb..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavfilter.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavfilter.so deleted file mode 100644 index e7ec65d..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavformat.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavformat.so deleted file mode 100644 index ffc8a2a..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavutil.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavutil.so deleted file mode 100644 index 9771497..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libswresample.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libswresample.so deleted file mode 100644 index df2aaa2..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libswscale.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libswscale.so deleted file mode 100644 index abb8cc3..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongRTCLib.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongRTCLib.so deleted file mode 100644 index 2f62fc1..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongRTCLib.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongRTCSupport.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongRTCSupport.so deleted file mode 100644 index f926b09..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libRongRTCSupport.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavcodec.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavcodec.so deleted file mode 100644 index d75767e..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavcodec.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavfilter.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavfilter.so deleted file mode 100644 index 34d9a1c..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavfilter.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavformat.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavformat.so deleted file mode 100644 index c7bc06c..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavformat.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavutil.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavutil.so deleted file mode 100644 index b587e70..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libavutil.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libswresample.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libswresample.so deleted file mode 100644 index b02170d..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libswresample.so and /dev/null differ diff --git a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libswscale.so b/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libswscale.so deleted file mode 100644 index f1d0a80..0000000 Binary files a/rtclib/build/intermediates/stripped_native_libs/debug/out/lib/x86/libswscale.so and /dev/null differ diff --git a/rtclib/build/intermediates/symbols/debug/R.txt b/rtclib/build/intermediates/symbols/debug/R.txt deleted file mode 100644 index aa3b6a8..0000000 --- a/rtclib/build/intermediates/symbols/debug/R.txt +++ /dev/null @@ -1,379 +0,0 @@ -int attr alpha 0x7f040001 -int attr buttonSize 0x7f040002 -int attr circleCrop 0x7f040003 -int attr colorScheme 0x7f040004 -int attr coordinatorLayoutStyle 0x7f040005 -int attr font 0x7f040006 -int attr fontProviderAuthority 0x7f040007 -int attr fontProviderCerts 0x7f040008 -int attr fontProviderFetchStrategy 0x7f040009 -int attr fontProviderFetchTimeout 0x7f04000a -int attr fontProviderPackage 0x7f04000b -int attr fontProviderQuery 0x7f04000c -int attr fontStyle 0x7f04000d -int attr fontVariationSettings 0x7f04000e -int attr fontWeight 0x7f04000f -int attr imageAspectRatio 0x7f040010 -int attr imageAspectRatioAdjust 0x7f040011 -int attr keylines 0x7f040012 -int attr layout_anchor 0x7f040013 -int attr layout_anchorGravity 0x7f040014 -int attr layout_behavior 0x7f040015 -int attr layout_dodgeInsetEdges 0x7f040016 -int attr layout_insetEdge 0x7f040017 -int attr layout_keyline 0x7f040018 -int attr scopeUris 0x7f040019 -int attr statusBarBackground 0x7f04001a -int attr ttcIndex 0x7f04001b -int bool rc_extension_history 0x7f050001 -int bool rc_q_storage_mode_enable 0x7f050002 -int bool rc_secure_shared_preferences 0x7f050003 -int bool rc_typing_status 0x7f050004 -int color common_google_signin_btn_text_dark 0x7f060001 -int color common_google_signin_btn_text_dark_default 0x7f060002 -int color common_google_signin_btn_text_dark_disabled 0x7f060003 -int color common_google_signin_btn_text_dark_focused 0x7f060004 -int color common_google_signin_btn_text_dark_pressed 0x7f060005 -int color common_google_signin_btn_text_light 0x7f060006 -int color common_google_signin_btn_text_light_default 0x7f060007 -int color common_google_signin_btn_text_light_disabled 0x7f060008 -int color common_google_signin_btn_text_light_focused 0x7f060009 -int color common_google_signin_btn_text_light_pressed 0x7f06000a -int color common_google_signin_btn_tint 0x7f06000b -int color emui_color_gray_1 0x7f06000c -int color emui_color_gray_10 0x7f06000d -int color emui_color_gray_7 0x7f06000e -int color notification_action_color_filter 0x7f06000f -int color notification_icon_bg_color 0x7f060010 -int color ripple_material_light 0x7f060011 -int color secondary_text_default_material_light 0x7f060012 -int color upsdk_color_gray_1 0x7f060013 -int color upsdk_color_gray_10 0x7f060014 -int color upsdk_color_gray_7 0x7f060015 -int dimen compat_button_inset_horizontal_material 0x7f070001 -int dimen compat_button_inset_vertical_material 0x7f070002 -int dimen compat_button_padding_horizontal_material 0x7f070003 -int dimen compat_button_padding_vertical_material 0x7f070004 -int dimen compat_control_corner_material 0x7f070005 -int dimen compat_notification_large_icon_max_height 0x7f070006 -int dimen compat_notification_large_icon_max_width 0x7f070007 -int dimen notification_action_icon_size 0x7f070008 -int dimen notification_action_text_size 0x7f070009 -int dimen notification_big_circle_margin 0x7f07000a -int dimen notification_content_margin_start 0x7f07000b -int dimen notification_large_icon_height 0x7f07000c -int dimen notification_large_icon_width 0x7f07000d -int dimen notification_main_column_padding_top 0x7f07000e -int dimen notification_media_narrow_margin 0x7f07000f -int dimen notification_right_icon_size 0x7f070010 -int dimen notification_right_side_padding_top 0x7f070011 -int dimen notification_small_icon_background_padding 0x7f070012 -int dimen notification_small_icon_size_as_large 0x7f070013 -int dimen notification_subtext_size 0x7f070014 -int dimen notification_top_pad 0x7f070015 -int dimen notification_top_pad_large_text 0x7f070016 -int dimen upsdk_margin_l 0x7f070017 -int dimen upsdk_margin_m 0x7f070018 -int dimen upsdk_margin_xs 0x7f070019 -int dimen upsdk_master_body_2 0x7f07001a -int dimen upsdk_master_subtitle 0x7f07001b -int drawable common_full_open_on_phone 0x7f080001 -int drawable common_google_signin_btn_icon_dark 0x7f080002 -int drawable common_google_signin_btn_icon_dark_focused 0x7f080003 -int drawable common_google_signin_btn_icon_dark_normal 0x7f080004 -int drawable common_google_signin_btn_icon_dark_normal_background 0x7f080005 -int drawable common_google_signin_btn_icon_disabled 0x7f080006 -int drawable common_google_signin_btn_icon_light 0x7f080007 -int drawable common_google_signin_btn_icon_light_focused 0x7f080008 -int drawable common_google_signin_btn_icon_light_normal 0x7f080009 -int drawable common_google_signin_btn_icon_light_normal_background 0x7f08000a -int drawable common_google_signin_btn_text_dark 0x7f08000b -int drawable common_google_signin_btn_text_dark_focused 0x7f08000c -int drawable common_google_signin_btn_text_dark_normal 0x7f08000d -int drawable common_google_signin_btn_text_dark_normal_background 0x7f08000e -int drawable common_google_signin_btn_text_disabled 0x7f08000f -int drawable common_google_signin_btn_text_light 0x7f080010 -int drawable common_google_signin_btn_text_light_focused 0x7f080011 -int drawable common_google_signin_btn_text_light_normal 0x7f080012 -int drawable common_google_signin_btn_text_light_normal_background 0x7f080013 -int drawable googleg_disabled_color_18 0x7f080014 -int drawable googleg_standard_color_18 0x7f080015 -int drawable notification_action_background 0x7f080016 -int drawable notification_bg 0x7f080017 -int drawable notification_bg_low 0x7f080018 -int drawable notification_bg_low_normal 0x7f080019 -int drawable notification_bg_low_pressed 0x7f08001a -int drawable notification_bg_normal 0x7f08001b -int drawable notification_bg_normal_pressed 0x7f08001c -int drawable notification_icon_background 0x7f08001d -int drawable notification_template_icon_bg 0x7f08001e -int drawable notification_template_icon_low_bg 0x7f08001f -int drawable notification_tile_bg 0x7f080020 -int drawable notify_panel_notification_icon_bg 0x7f080021 -int drawable push_pure_close 0x7f080022 -int drawable stat_sys_third_app_notify 0x7f080023 -int drawable upsdk_cancel_bg 0x7f080024 -int drawable upsdk_cancel_normal 0x7f080025 -int drawable upsdk_cancel_pressed_bg 0x7f080026 -int drawable upsdk_third_download_bg 0x7f080027 -int id action 0x7f0b0001 -int id action_container 0x7f0b0002 -int id action_divider 0x7f0b0003 -int id action_image 0x7f0b0004 -int id action_text 0x7f0b0005 -int id actions 0x7f0b0006 -int id adjust_height 0x7f0b0007 -int id adjust_width 0x7f0b0008 -int id allsize_textview 0x7f0b0009 -int id appsize_textview 0x7f0b000a -int id async 0x7f0b000b -int id auto 0x7f0b000c -int id blocking 0x7f0b000d -int id bottom 0x7f0b000e -int id cancel_bg 0x7f0b000f -int id cancel_imageview 0x7f0b0010 -int id chronometer 0x7f0b0011 -int id content_layout 0x7f0b0012 -int id content_textview 0x7f0b0013 -int id dark 0x7f0b0014 -int id divider 0x7f0b0015 -int id download_info_progress 0x7f0b0016 -int id enable_service_text 0x7f0b0017 -int id end 0x7f0b0018 -int id forever 0x7f0b0019 -int id hms_message_text 0x7f0b001a -int id hms_progress_bar 0x7f0b001b -int id hms_progress_text 0x7f0b001c -int id icon 0x7f0b001d -int id icon_group 0x7f0b001e -int id icon_only 0x7f0b001f -int id info 0x7f0b0020 -int id italic 0x7f0b0021 -int id left 0x7f0b0022 -int id light 0x7f0b0023 -int id line1 0x7f0b0024 -int id line3 0x7f0b0025 -int id name_layout 0x7f0b0026 -int id name_textview 0x7f0b0027 -int id none 0x7f0b0028 -int id normal 0x7f0b0029 -int id notification_background 0x7f0b002a -int id notification_main_column 0x7f0b002b -int id notification_main_column_container 0x7f0b002c -int id push_big_bigtext_defaultView 0x7f0b002d -int id push_big_bigview_defaultView 0x7f0b002e -int id push_big_defaultView 0x7f0b002f -int id push_big_notification 0x7f0b0030 -int id push_big_notification_content 0x7f0b0031 -int id push_big_notification_date 0x7f0b0032 -int id push_big_notification_icon 0x7f0b0033 -int id push_big_notification_icon2 0x7f0b0034 -int id push_big_notification_title 0x7f0b0035 -int id push_big_pic_default_Content 0x7f0b0036 -int id push_big_text_notification_area 0x7f0b0037 -int id push_pure_bigview_banner 0x7f0b0038 -int id push_pure_bigview_expanded 0x7f0b0039 -int id push_pure_close 0x7f0b003a -int id right 0x7f0b003b -int id right_icon 0x7f0b003c -int id right_side 0x7f0b003d -int id scroll_layout 0x7f0b003e -int id size_layout 0x7f0b003f -int id standard 0x7f0b0040 -int id start 0x7f0b0041 -int id tag_transition_group 0x7f0b0042 -int id tag_unhandled_key_event_manager 0x7f0b0043 -int id tag_unhandled_key_listeners 0x7f0b0044 -int id text 0x7f0b0045 -int id text2 0x7f0b0046 -int id third_app_dl_progress_text 0x7f0b0047 -int id third_app_dl_progressbar 0x7f0b0048 -int id third_app_warn_text 0x7f0b0049 -int id time 0x7f0b004a -int id title 0x7f0b004b -int id top 0x7f0b004c -int id version_layout 0x7f0b004d -int id version_textview 0x7f0b004e -int id wide 0x7f0b004f -int integer google_play_services_version 0x7f0c0001 -int integer rc_disappear_interval 0x7f0c0002 -int integer rc_image_quality 0x7f0c0003 -int integer rc_image_size 0x7f0c0004 -int integer rc_location_thumb_height 0x7f0c0005 -int integer rc_location_thumb_quality 0x7f0c0006 -int integer rc_location_thumb_width 0x7f0c0007 -int integer rc_max_original_image_size 0x7f0c0008 -int integer rc_resume_file_transfer_size_each_slice 0x7f0c0009 -int integer rc_sight_compress_height 0x7f0c000a -int integer rc_sight_compress_width 0x7f0c000b -int integer rc_thumb_compress_min_size 0x7f0c000c -int integer rc_thumb_compress_size 0x7f0c000d -int integer rc_thumb_quality 0x7f0c000e -int integer status_bar_notification_info_maxnum 0x7f0c000f -int layout activity_endisable_service 0x7f0e0001 -int layout hms_download_progress 0x7f0e0002 -int layout notification_action 0x7f0e0003 -int layout notification_action_tombstone 0x7f0e0004 -int layout notification_template_custom_big 0x7f0e0005 -int layout notification_template_icon_group 0x7f0e0006 -int layout notification_template_part_chronometer 0x7f0e0007 -int layout notification_template_part_time 0x7f0e0008 -int layout push_expandable_big_image_notification 0x7f0e0009 -int layout push_expandable_big_text_notification 0x7f0e000a -int layout push_pure_pic_notification_f6 0x7f0e000b -int layout push_pure_pic_notification_f7 0x7f0e000c -int layout push_pure_pic_notification_f8 0x7f0e000d -int layout push_pure_pic_notification_f9 0x7f0e000e -int layout push_pure_pic_notification_f9_275 0x7f0e000f -int layout upsdk_app_dl_progress_dialog 0x7f0e0010 -int layout upsdk_ota_update_view 0x7f0e0011 -int string app_name 0x7f140001 -int string common_google_play_services_enable_button 0x7f140002 -int string common_google_play_services_enable_text 0x7f140003 -int string common_google_play_services_enable_title 0x7f140004 -int string common_google_play_services_install_button 0x7f140005 -int string common_google_play_services_install_text 0x7f140006 -int string common_google_play_services_install_title 0x7f140007 -int string common_google_play_services_notification_channel_name 0x7f140008 -int string common_google_play_services_notification_ticker 0x7f140009 -int string common_google_play_services_unknown_issue 0x7f14000a -int string common_google_play_services_unsupported_text 0x7f14000b -int string common_google_play_services_update_button 0x7f14000c -int string common_google_play_services_update_text 0x7f14000d -int string common_google_play_services_update_title 0x7f14000e -int string common_google_play_services_updating_text 0x7f14000f -int string common_google_play_services_wear_update_text 0x7f140010 -int string common_open_on_phone 0x7f140011 -int string common_signin_button_text 0x7f140012 -int string common_signin_button_text_long 0x7f140013 -int string fcm_fallback_notification_channel_label 0x7f140014 -int string gcm_fallback_notification_channel_label 0x7f140015 -int string hms_abort 0x7f140016 -int string hms_abort_message 0x7f140017 -int string hms_bindfaildlg_message 0x7f140018 -int string hms_bindfaildlg_title 0x7f140019 -int string hms_cancel 0x7f14001a -int string hms_check_failure 0x7f14001b -int string hms_checking 0x7f14001c -int string hms_confirm 0x7f14001d -int string hms_download_failure 0x7f14001e -int string hms_download_no_space 0x7f14001f -int string hms_download_retry 0x7f140020 -int string hms_downloading_loading 0x7f140021 -int string hms_install 0x7f140022 -int string hms_install_message 0x7f140023 -int string hms_push_channel 0x7f140024 -int string hms_push_google 0x7f140025 -int string hms_push_vmall 0x7f140026 -int string hms_retry 0x7f140027 -int string hms_update 0x7f140028 -int string hms_update_continue 0x7f140029 -int string hms_update_message 0x7f14002a -int string hms_update_message_new 0x7f14002b -int string hms_update_nettype 0x7f14002c -int string hms_update_title 0x7f14002d -int string push_cat_body 0x7f14002e -int string push_cat_head 0x7f14002f -int string push_heartbeat_timer 0x7f140030 -int string rc_heartbeat_acquire_time 0x7f140031 -int string rc_heartbeat_timer 0x7f140032 -int string rc_init_failed 0x7f140033 -int string rc_location_sharing_ended 0x7f140034 -int string rc_media_message_default_save_path 0x7f140035 -int string rc_notification_channel_name 0x7f140036 -int string rc_notification_new_msg 0x7f140037 -int string rc_notification_new_plural_msg 0x7f140038 -int string rc_notification_ticker_text 0x7f140039 -int string rc_quit_custom_service 0x7f14003a -int string rc_receive_location_share_msg 0x7f14003b -int string status_bar_notification_info_overflow 0x7f14003c -int string system_default_channel 0x7f14003d -int string upsdk_app_download_info_new 0x7f14003e -int string upsdk_app_download_installing 0x7f14003f -int string upsdk_app_size 0x7f140040 -int string upsdk_app_version 0x7f140041 -int string upsdk_appstore_install 0x7f140042 -int string upsdk_apptouch_store_url 0x7f140043 -int string upsdk_cancel 0x7f140044 -int string upsdk_checking_update_prompt 0x7f140045 -int string upsdk_choice_update 0x7f140046 -int string upsdk_detail 0x7f140047 -int string upsdk_getting_message_fail_prompt_toast 0x7f140048 -int string upsdk_mobile_dld_warn 0x7f140049 -int string upsdk_no_available_network_prompt_toast 0x7f14004a -int string upsdk_ota_app_name 0x7f14004b -int string upsdk_ota_cancel 0x7f14004c -int string upsdk_ota_force_cancel_new 0x7f14004d -int string upsdk_ota_notify_updatebtn 0x7f14004e -int string upsdk_ota_title 0x7f14004f -int string upsdk_storage_utils 0x7f140050 -int string upsdk_store_url 0x7f140051 -int string upsdk_third_app_dl_cancel_download_prompt_ex 0x7f140052 -int string upsdk_third_app_dl_install_failed 0x7f140053 -int string upsdk_third_app_dl_sure_cancel_download 0x7f140054 -int string upsdk_update_check_no_new_version 0x7f140055 -int style TextAppearance_Compat_Notification 0x7f150001 -int style TextAppearance_Compat_Notification_Info 0x7f150002 -int style TextAppearance_Compat_Notification_Line2 0x7f150003 -int style TextAppearance_Compat_Notification_Time 0x7f150004 -int style TextAppearance_Compat_Notification_Title 0x7f150005 -int style Widget_Compat_NotificationActionContainer 0x7f150006 -int style Widget_Compat_NotificationActionText 0x7f150007 -int style Widget_Support_CoordinatorLayout 0x7f150008 -int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 } -int styleable ColorStateListItem_alpha 0 -int styleable ColorStateListItem_android_alpha 1 -int styleable ColorStateListItem_android_color 2 -int[] styleable CoordinatorLayout { 0x7f040012, 0x7f04001a } -int styleable CoordinatorLayout_keylines 0 -int styleable CoordinatorLayout_statusBarBackground 1 -int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018 } -int styleable CoordinatorLayout_Layout_android_layout_gravity 0 -int styleable CoordinatorLayout_Layout_layout_anchor 1 -int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 -int styleable CoordinatorLayout_Layout_layout_behavior 3 -int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 -int styleable CoordinatorLayout_Layout_layout_insetEdge 5 -int styleable CoordinatorLayout_Layout_layout_keyline 6 -int[] styleable FontFamily { 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c } -int styleable FontFamily_fontProviderAuthority 0 -int styleable FontFamily_fontProviderCerts 1 -int styleable FontFamily_fontProviderFetchStrategy 2 -int styleable FontFamily_fontProviderFetchTimeout 3 -int styleable FontFamily_fontProviderPackage 4 -int styleable FontFamily_fontProviderQuery 5 -int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040006, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f04001b } -int styleable FontFamilyFont_android_font 0 -int styleable FontFamilyFont_android_fontStyle 1 -int styleable FontFamilyFont_android_fontVariationSettings 2 -int styleable FontFamilyFont_android_fontWeight 3 -int styleable FontFamilyFont_android_ttcIndex 4 -int styleable FontFamilyFont_font 5 -int styleable FontFamilyFont_fontStyle 6 -int styleable FontFamilyFont_fontVariationSettings 7 -int styleable FontFamilyFont_fontWeight 8 -int styleable FontFamilyFont_ttcIndex 9 -int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } -int styleable GradientColor_android_centerColor 0 -int styleable GradientColor_android_centerX 1 -int styleable GradientColor_android_centerY 2 -int styleable GradientColor_android_endColor 3 -int styleable GradientColor_android_endX 4 -int styleable GradientColor_android_endY 5 -int styleable GradientColor_android_gradientRadius 6 -int styleable GradientColor_android_startColor 7 -int styleable GradientColor_android_startX 8 -int styleable GradientColor_android_startY 9 -int styleable GradientColor_android_tileMode 10 -int styleable GradientColor_android_type 11 -int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } -int styleable GradientColorItem_android_color 0 -int styleable GradientColorItem_android_offset 1 -int[] styleable LoadingImageView { 0x7f040003, 0x7f040010, 0x7f040011 } -int styleable LoadingImageView_circleCrop 0 -int styleable LoadingImageView_imageAspectRatio 1 -int styleable LoadingImageView_imageAspectRatioAdjust 2 -int[] styleable SignInButton { 0x7f040002, 0x7f040004, 0x7f040019 } -int styleable SignInButton_buttonSize 0 -int styleable SignInButton_colorScheme 1 -int styleable SignInButton_scopeUris 2 diff --git a/rtclib/build/outputs/aar/rtclib-debug.aar b/rtclib/build/outputs/aar/rtclib-debug.aar deleted file mode 100644 index 6b24177..0000000 Binary files a/rtclib/build/outputs/aar/rtclib-debug.aar and /dev/null differ diff --git a/rtclib/build/outputs/logs/manifest-merger-debug-report.txt b/rtclib/build/outputs/logs/manifest-merger-debug-report.txt deleted file mode 100644 index f33caa5..0000000 --- a/rtclib/build/outputs/logs/manifest-merger-debug-report.txt +++ /dev/null @@ -1,97 +0,0 @@ --- Merging decision tree log --- -manifest -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:1:1-25:12 -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:1:1-25:12 -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:1:1-25:12 -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:1:1-25:12 -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:1:1-25:12 - package - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:2:5-34 - INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - android:versionName - INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:1:1-25:12 - INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - xmlns:android - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:1:11-69 -uses-permission#android.permission.BLUETOOTH_ADMIN -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:4:5-74 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:4:22-71 -uses-permission#android.permission.BLUETOOTH -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:5:5-68 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:5:22-65 -uses-permission#android.permission.BLUETOOTH_CONNECT -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:6:5-76 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:6:22-73 -uses-permission#android.permission.CAMERA -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:7:5-65 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:7:22-62 -uses-permission#android.permission.CHANGE_NETWORK_STATE -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:8:5-79 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:8:22-76 -uses-permission#android.permission.MODIFY_AUDIO_SETTINGS -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:9:5-80 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:9:22-77 -uses-permission#android.permission.RECORD_AUDIO -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:10:5-71 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:10:22-68 -uses-permission#android.permission.INTERNET -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:11:5-67 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:11:22-64 -uses-permission#android.permission.WRITE_EXTERNAL_STORAGE -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:12:5-81 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:12:22-78 -uses-permission#android.permission.ACCESS_NETWORK_STATE -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:13:5-79 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:13:22-76 -uses-permission#android.permission.ACCESS_WIFI_STATE -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:14:5-76 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:14:22-73 -uses-permission#android.permission.READ_PHONE_STATE -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:15:5-75 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:15:22-72 -uses-permission#android.permission.READ_EXTERNAL_STORAGE -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:16:5-80 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:16:22-77 -uses-permission#android.permission.REQUEST_INSTALL_PACKAGES -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:17:5-83 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:17:22-80 -application -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:19:5-24:19 - android:supportsRtl - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:20:9-35 -meta-data#rc.rtclib -ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:21:9-23:64 - android:value - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:23:13-61 - android:name - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml:22:13-37 -uses-sdk -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml reason: use-sdk injection requested -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml -INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - android:targetSdkVersion - INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - android:minSdkVersion - INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - ADDED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml - INJECTED from D:\StudioProjects\UnionMedTV\rtclib\AndroidManifest.xml