diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..fb7f4a8 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..25afd4e --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,27 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..eb2873e --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..061dd21 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..797acea --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index ee2fe51..951e920 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -103,9 +103,10 @@ dependencies { implementation 'com.github.JavaNoober.BackgroundLibrary:libraryx:1.7.2' //融云IM 5.2.1.55 - api project(path: ':imlib') - api project(path: ':calllib') +// api project(path: ':imlib') +// api project(path: ':calllib') //https://github.com/yipianfengye/android-zxingLibrary compile 'cn.yipianfengye.android:zxing-library:2.2' compile 'com.github.lmiot:LoadDialog:V2.1' + api project(path: ':meeting1v1') } diff --git a/app/src/main/java/com/unionmed/unionmedtv/activity/MsgActivity.java b/app/src/main/java/com/unionmed/unionmedtv/activity/MsgActivity.java index 712b49d..cc48baf 100644 --- a/app/src/main/java/com/unionmed/unionmedtv/activity/MsgActivity.java +++ b/app/src/main/java/com/unionmed/unionmedtv/activity/MsgActivity.java @@ -77,13 +77,14 @@ public class MsgActivity extends BaseActivity { } public void getMsgList(){ LmiotDialog.show(MsgActivity.this,"获取聊天数据"); - Conversation.ConversationType[] conversationTypes = {Conversation.ConversationType.PRIVATE, Conversation.ConversationType.GROUP}; + Conversation.ConversationType[] conversationTypes = {Conversation.ConversationType.PRIVATE}; RongIMClient.getInstance().getConversationListByPage(new RongIMClient. ResultCallback>() { @Override public void onSuccess(List conversations) { LmiotDialog.hidden(); + if(conversations==null){ lin.setVisibility(View.VISIBLE); tv_content.setText("暂无数据"); diff --git a/app/src/main/java/com/unionmed/unionmedtv/adapter/MsgItemAdapter.java b/app/src/main/java/com/unionmed/unionmedtv/adapter/MsgItemAdapter.java index 50392ff..dde4ae0 100644 --- a/app/src/main/java/com/unionmed/unionmedtv/adapter/MsgItemAdapter.java +++ b/app/src/main/java/com/unionmed/unionmedtv/adapter/MsgItemAdapter.java @@ -17,6 +17,7 @@ import com.chad.library.adapter.base.delegate.BaseMultiTypeDelegate; import com.chad.library.adapter.base.viewholder.BaseViewHolder; import com.unionmed.unionmedtv.R; import com.unionmed.unionmedtv.activity.MsgActivity; +import com.unionmed.unionmedtv.im.CustomNoticeMessageModel; import com.unionmed.unionmedtv.im.MeetingMsgModel; import com.unionmed.unionmedtv.utils.CacheUtil; import com.unionmed.unionmedtv.utils.OnChildClickListener; @@ -27,6 +28,7 @@ import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; +import cn.rongcloud.demo.meeting.MeetingActivity; import io.rong.imlib.model.Message; import io.rong.imlib.model.UnknownMessage; import io.rong.message.ImageMessage; @@ -85,6 +87,12 @@ public class MsgItemAdapter extends BaseDelegateMultiAdapter void onChildClick(View view, int position, T data) { - + ToastUtils.showLong("点解item"); +// MeetingActivity.start(getContext(), message.getTargetId(), false); } }); View emptyView = LayoutInflater.from(getActivity()) @@ -171,6 +174,11 @@ public class MsgFragment extends Fragment implements View.OnClickListener { Log.i("TAG", "onComplete: ================"+messageList.get(i).getContent()); } Collections.reverse(messageList); + for (int i=0;i CREATOR = new Creator() { + public CustomNoticeMessageModel createFromParcel(Parcel source) { + return new CustomNoticeMessageModel(source); + } + + public CustomNoticeMessageModel[] newArray(int size) { + return new CustomNoticeMessageModel[size]; + } + }; + + private String content; + private String contentType; + private String ext; + private String logo; + private String text; + private String title; + private String url; + + + /** + * 将本地消息对象序列化为消息数据。 + * + * @return 消息数据。 + */ + @Override + public byte[] encode() { + JSONObject jsonObj = new JSONObject(); + try { + // 消息携带用户信息时, 自定义消息需添加下面代码 + if (getJSONUserInfo() != null) { + jsonObj.putOpt("user", getJSONUserInfo()); + } + // 用于群组聊天, 消息携带 @ 人信息时, 自定义消息需添加下面代码 + if (getJsonMentionInfo() != null) { + jsonObj.putOpt("mentionedInfo", getJsonMentionInfo()); + } + // 将所有自定义消息的内容,都序列化至 json 对象中 + jsonObj.put("content", this.content); + jsonObj.put("contentType", this.contentType); + jsonObj.put("logo", this.logo); + jsonObj.put("text", this.text); + jsonObj.put("title", this.title); + jsonObj.put("url", this.url); + jsonObj.put("ext", this.ext); + } catch (JSONException e) { + Log.e(TAG, "JSONException " + e.getMessage()); + } + + try { + return jsonObj.toString().getBytes("UTF-8"); + } catch (UnsupportedEncodingException e) { + Log.e(TAG, "UnsupportedEncodingException ", e); + } + return null; + } + + /** + * 创建 MyMyTextContent(byte[] data) 带有 byte[] 的构造方法用于解析消息内容. + */ + public CustomNoticeMessageModel(byte[] data) { + if (data == null) { + return; + } + String jsonStr = null; + try { + jsonStr = new String(data, "UTF-8"); + } catch (UnsupportedEncodingException e) { + Log.e(TAG, "UnsupportedEncodingException ", e); + } + if (jsonStr == null) { + Log.e(TAG, "jsonStr is null "); + return; + } + + try { + JSONObject jsonObj = new JSONObject(jsonStr); + // 消息携带用户信息时, 自定义消息需添加下面代码 + if (jsonObj.has("user")) { + setUserInfo(parseJsonToUserInfo(jsonObj.getJSONObject("user"))); + } + // 用于群组聊天, 消息携带 @ 人信息时, 自定义消息需添加下面代码 + if (jsonObj.has("mentionedInfo")) { + setMentionedInfo(parseJsonToMentionInfo(jsonObj.getJSONObject("mentionedInfo"))); + } + // 将所有自定义变量从收到的 json 解析并赋值 + if (jsonObj.has("content")) { + content = jsonObj.optString("content"); + } + if (jsonObj.has("contentType")) { + contentType = jsonObj.optString("contentType"); + } + if (jsonObj.has("logo")) { + logo = jsonObj.optString("logo"); + } + if (jsonObj.has("text")) { + text = jsonObj.optString("text"); + } + if (jsonObj.has("title")) { + title = jsonObj.optString("title"); + } + if (jsonObj.has("url")) { + url = jsonObj.optString("url"); + } + if (jsonObj.has("ext")) { + ext = jsonObj.optString("ext"); + } +// if (jsonObj.has("ext")) { +// setExt(parseJsonToExt(jsonObj.getJSONObject("ext"))); +// } + } catch (JSONException e) { + Log.e(TAG, "JSONException " + e.getMessage()); + } + } + + @Override + public int describeContents() { + return 0; + } + + @Override + public void writeToParcel(Parcel dest, int flags) { + ParcelUtils.writeToParcel(dest, this.getExtra()); + ParcelUtils.writeToParcel(dest, this.getUserInfo()); + ParcelUtils.writeToParcel(dest, this.getMentionedInfo()); + ParcelUtils.writeToParcel(dest, this.isDestruct() ? 1 : 0); + ParcelUtils.writeToParcel(dest, this.getDestructTime()); + + ParcelUtils.writeToParcel(dest, this.content); + ParcelUtils.writeToParcel(dest, this.contentType); + ParcelUtils.writeToParcel(dest, this.logo); + ParcelUtils.writeToParcel(dest, this.text); + ParcelUtils.writeToParcel(dest, this.title); + ParcelUtils.writeToParcel(dest, this.url); + ParcelUtils.writeToParcel(dest, this.ext); + } + + public ExtBean parseJsonToExt(JSONObject jsonObj) { + ExtBean info = null; + String roomID = jsonObj.optString("roomID"); + String GroupID = jsonObj.optString("GroupID"); + + if (!TextUtils.isEmpty(roomID) && !TextUtils.isEmpty(GroupID)) { + info = new ExtBean(roomID, GroupID); + } + + return info; + } + + /** + * 构造函数。 + * + * @param in 初始化传入的 Parcel。 + */ + public CustomNoticeMessageModel(Parcel in) { + this.setExtra(ParcelUtils.readFromParcel(in)); + this.setUserInfo((UserInfo) ParcelUtils.readFromParcel(in, UserInfo.class)); + this.setMentionedInfo((MentionedInfo) ParcelUtils.readFromParcel(in, MentionedInfo.class)); + this.setDestruct(ParcelUtils.readIntFromParcel(in) == 1); + this.setDestructTime(ParcelUtils.readLongFromParcel(in)); + + this.setContent(ParcelUtils.readFromParcel(in)); + this.setContentType(ParcelUtils.readFromParcel(in)); + this.setLogo(ParcelUtils.readFromParcel(in)); + this.setText(ParcelUtils.readFromParcel(in)); + this.setTitle(ParcelUtils.readFromParcel(in)); + this.setUrl(ParcelUtils.readFromParcel(in)); + this.setExt(ParcelUtils.readFromParcel(in)); +// this.setExt((ExtBean) ParcelUtils.readFromParcel(in, ExtBean.class)); + } + + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getContentType() { + return contentType; + } + + public void setContentType(String contentType) { + this.contentType = contentType; + } + + public String getExt() { + return ext; + } + + public void setExt(String ext) { + this.ext = ext; + } + + public String getLogo() { + return logo; + } + + public void setLogo(String logo) { + this.logo = logo; + } + + public String getText() { + return text; + } + + public void setText(String text) { + this.text = text; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public static class ExtBean implements Parcelable { + private String roomID; + private String groupID; + + public String getRoomID() { + return roomID; + } + + public void setRoomID(String roomID) { + this.roomID = roomID; + } + + public String getGroupID() { + return groupID; + } + + public void setGroupID(String groupID) { + groupID = groupID; + } + + @Override + public int describeContents() { + return 0; + } + + @Override + public void writeToParcel(Parcel dest, int flags) { + dest.writeString(this.roomID); + dest.writeString(this.groupID); + } + + public void readFromParcel(Parcel source) { + this.roomID = source.readString(); + this.groupID = source.readString(); + } + + public ExtBean(String roomID, String groupID) { + this.roomID = roomID; + this.groupID = groupID; + } + + protected ExtBean(Parcel in) { + this.roomID = in.readString(); + this.groupID = in.readString(); + } + + public static final Creator CREATOR = new Creator() { + @Override + public ExtBean createFromParcel(Parcel source) { + return new ExtBean(source); + } + + @Override + public ExtBean[] newArray(int size) { + return new ExtBean[size]; + } + }; + } +} diff --git a/app/src/main/res/layout/item_msg_null_layout.xml b/app/src/main/res/layout/item_msg_null_layout.xml new file mode 100644 index 0000000..5f9a14b --- /dev/null +++ b/app/src/main/res/layout/item_msg_null_layout.xml @@ -0,0 +1,9 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-xhdpi/icon_mute.png b/app/src/main/res/mipmap-xhdpi/icon_mute.png new file mode 100644 index 0000000..e69de29 diff --git a/build.gradle b/build.gradle index 41fa885..6057092 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:3.4.2' + classpath 'com.android.tools.build:gradle:3.5.3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/calllib/.gitignore b/calllib/.gitignore new file mode 100644 index 0000000..0eeef28 --- /dev/null +++ b/calllib/.gitignore @@ -0,0 +1,46 @@ +# Built application files +*.apk +*.ap_ + +# Files for the Dalvik VM +*.dex + +# Java class files +*.class + +# Genetated files +bin/ +gen/ + +# OSX files +.DS_Store + +# Android Studio +*.iml +.idea + +# Gradle files +.gradle/ +build/ + +# Local configuration file (sdk path , etc) +local.properties +project.properties + +# Proguard folder generated bg Eclipse +proguard/ + +# Log Files +*.log + +/build +/captures +.externalNativeBuild +/.idea/caches/build_file_checksums.ser +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml + +src/test/ +src/androidTest/ +! \ No newline at end of file diff --git a/calllib/AndroidManifest.xml b/calllib/AndroidManifest.xml new file mode 100644 index 0000000..cc73e12 --- /dev/null +++ b/calllib/AndroidManifest.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + diff --git a/calllib/build.gradle b/calllib/build.gradle new file mode 100644 index 0000000..639239d --- /dev/null +++ b/calllib/build.gradle @@ -0,0 +1,23 @@ +apply plugin: 'com.android.library' + +android { + compileSdkVersion 31 + + defaultConfig { + minSdkVersion 19 + targetSdkVersion 31 + versionName "5.2.1.51" + } + + sourceSets { + main { + manifest.srcFile 'AndroidManifest.xml' + jniLibs.srcDirs = ['libs'] + } + } +} + +dependencies { + api fileTree(dir: 'libs', include: ['*.jar']) + api project(':rtclib') +} diff --git a/calllib/libs/rong_calllib_5.2.1.51.jar b/calllib/libs/rong_calllib_5.2.1.51.jar new file mode 100644 index 0000000..a197b4d Binary files /dev/null and b/calllib/libs/rong_calllib_5.2.1.51.jar differ diff --git a/common/build.gradle b/common/build.gradle new file mode 100644 index 0000000..bc03bc0 --- /dev/null +++ b/common/build.gradle @@ -0,0 +1,37 @@ +plugins { + id 'com.android.library' +} + +android { + compileSdkVersion 30 + defaultConfig { + minSdkVersion 19 + targetSdkVersion 27 + versionCode 1 + versionName "1.0" + + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles "consumer-rules.pro" + + ndk { + abiFilters "armeabi-v7a" + } + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'com.google.android.material:material:1.3.0' + testImplementation 'junit:junit:4.+' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' +} \ No newline at end of file diff --git a/common/build/.transforms/9c8ddff6595b43fbf78d6eeedd01fed7.bin b/common/build/.transforms/9c8ddff6595b43fbf78d6eeedd01fed7.bin new file mode 100644 index 0000000..0d259dd --- /dev/null +++ b/common/build/.transforms/9c8ddff6595b43fbf78d6eeedd01fed7.bin @@ -0,0 +1 @@ +o/classes diff --git a/common/build/.transforms/9c8ddff6595b43fbf78d6eeedd01fed7/classes/classes.dex b/common/build/.transforms/9c8ddff6595b43fbf78d6eeedd01fed7/classes/classes.dex new file mode 100644 index 0000000..1059193 Binary files /dev/null and b/common/build/.transforms/9c8ddff6595b43fbf78d6eeedd01fed7/classes/classes.dex differ diff --git a/common/build/generated/source/buildConfig/debug/cn/rongcloud/demo/common/BuildConfig.java b/common/build/generated/source/buildConfig/debug/cn/rongcloud/demo/common/BuildConfig.java new file mode 100644 index 0000000..d9225e6 --- /dev/null +++ b/common/build/generated/source/buildConfig/debug/cn/rongcloud/demo/common/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package cn.rongcloud.demo.common; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "cn.rongcloud.demo.common"; + /** + * @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.demo.common"; + 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 = "1.0"; +} diff --git a/common/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/common/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000..fcdc3c8 --- /dev/null +++ b/common/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/common/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/common/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000..783b7df --- /dev/null +++ b/common/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"common-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"cn.rongcloud.demo.common","split":""}}] \ No newline at end of file diff --git a/common/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/common/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/common/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/common/build/intermediates/compile_library_classes/debug/classes.jar b/common/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000..05e645d Binary files /dev/null and b/common/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/common/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/common/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000..a66a745 Binary files /dev/null and b/common/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/common/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/common/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000..1d81080 --- /dev/null +++ b/common/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,3 @@ +#Thu Jul 20 17:13:35 CST 2023 +D\:\\StudioProjects\\UnionMedTV\\common\\src\\main\\res\\layout\\layout_loading.xml=D\:\\StudioProjects\\UnionMedTV\\common\\build\\intermediates\\packaged_res\\debug\\layout\\layout_loading.xml +D\:\\StudioProjects\\UnionMedTV\\common\\src\\main\\res\\drawable\\btn_style.xml=D\:\\StudioProjects\\UnionMedTV\\common\\build\\intermediates\\packaged_res\\debug\\drawable\\btn_style.xml diff --git a/common/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/common/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..4f91fad --- /dev/null +++ b/common/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,11 @@ + + + #FF000000 + #FF57B5F9 + #FF3700B3 + #FFFFFFFF + common + + \ No newline at end of file diff --git a/common/build/intermediates/incremental/packageDebugResources/merger.xml b/common/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000..3f95434 --- /dev/null +++ b/common/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,4 @@ + +#FF000000#FFFFFFFF#FF57B5F9#FF3700B3common \ No newline at end of file diff --git a/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/BuildConfig.class b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/BuildConfig.class new file mode 100644 index 0000000..c899ad0 Binary files /dev/null and b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/BuildConfig.class differ diff --git a/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer$1.class b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer$1.class new file mode 100644 index 0000000..3cddcfb Binary files /dev/null and b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer$1.class differ diff --git a/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer$GetTokenCallback.class b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer$GetTokenCallback.class new file mode 100644 index 0000000..e88464d Binary files /dev/null and b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer$GetTokenCallback.class differ diff --git a/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer.class b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer.class new file mode 100644 index 0000000..5213fa5 Binary files /dev/null and b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/MockAppServer.class differ diff --git a/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/UiUtils.class b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/UiUtils.class new file mode 100644 index 0000000..564f079 Binary files /dev/null and b/common/build/intermediates/javac/debug/classes/cn/rongcloud/demo/common/UiUtils.class differ diff --git a/common/build/intermediates/library_manifest/debug/AndroidManifest.xml b/common/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000..fcdc3c8 --- /dev/null +++ b/common/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/common/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/common/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000..deff345 --- /dev/null +++ b/common/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,10 @@ +R_DEF: Internal format may change without notice +local +color black +color light_blue +color purple_700 +color white +drawable btn_style +layout layout_loading +string app_name +style TransparentDialog diff --git a/common/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/common/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000..8b355cd --- /dev/null +++ b/common/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,13 @@ +1 +2 +6 +7 D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml +9 android:targetSdkVersion="27" /> +9-->D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml +10 +11 diff --git a/common/build/intermediates/merged_manifests/debug/output.json b/common/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000..305d7c1 --- /dev/null +++ b/common/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"common-debug.aar","fullName":"debug","baseName":"debug"},"path":"..\\..\\library_manifest\\debug\\AndroidManifest.xml","properties":{"packageId":"cn.rongcloud.demo.common","split":""}}] \ No newline at end of file diff --git a/common/build/intermediates/packaged_res/debug/drawable/btn_style.xml b/common/build/intermediates/packaged_res/debug/drawable/btn_style.xml new file mode 100644 index 0000000..165cf7f --- /dev/null +++ b/common/build/intermediates/packaged_res/debug/drawable/btn_style.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/common/build/intermediates/packaged_res/debug/layout/layout_loading.xml b/common/build/intermediates/packaged_res/debug/layout/layout_loading.xml new file mode 100644 index 0000000..79f9144 --- /dev/null +++ b/common/build/intermediates/packaged_res/debug/layout/layout_loading.xml @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/common/build/intermediates/packaged_res/debug/values/values.xml b/common/build/intermediates/packaged_res/debug/values/values.xml new file mode 100644 index 0000000..4f91fad --- /dev/null +++ b/common/build/intermediates/packaged_res/debug/values/values.xml @@ -0,0 +1,11 @@ + + + #FF000000 + #FF57B5F9 + #FF3700B3 + #FFFFFFFF + common + + \ No newline at end of file diff --git a/common/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/common/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000..e96c936 --- /dev/null +++ b/common/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,3129 @@ +cn.rongcloud.demo.common +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +anim design_bottom_sheet_slide_in +anim design_bottom_sheet_slide_out +anim design_snackbar_in +anim design_snackbar_out +anim mtrl_bottom_sheet_slide_in +anim mtrl_bottom_sheet_slide_out +anim mtrl_card_lowers_interpolator +animator design_appbar_state_list_animator +animator design_fab_hide_motion_spec +animator design_fab_show_motion_spec +animator linear_indeterminate_line1_head_interpolator +animator linear_indeterminate_line1_tail_interpolator +animator linear_indeterminate_line2_head_interpolator +animator linear_indeterminate_line2_tail_interpolator +animator mtrl_btn_state_list_anim +animator mtrl_btn_unelevated_state_list_anim +animator mtrl_card_state_list_anim +animator mtrl_chip_state_list_anim +animator mtrl_extended_fab_change_size_collapse_motion_spec +animator mtrl_extended_fab_change_size_expand_motion_spec +animator mtrl_extended_fab_hide_motion_spec +animator mtrl_extended_fab_show_motion_spec +animator mtrl_extended_fab_state_list_animator +animator mtrl_fab_hide_motion_spec +animator mtrl_fab_show_motion_spec +animator mtrl_fab_transformation_sheet_collapse_spec +animator mtrl_fab_transformation_sheet_expand_spec +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionTextColorAlpha +attr actionViewClass +attr activityChooserViewStyle +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr altSrc +attr animate_relativeTo +attr animationMode +attr appBarLayoutStyle +attr applyMotionScene +attr arcMode +attr arrowHeadLength +attr arrowShaftLength +attr attributeName +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr autoTransition +attr background +attr backgroundColor +attr backgroundInsetBottom +attr backgroundInsetEnd +attr backgroundInsetStart +attr backgroundInsetTop +attr backgroundOverlayColorAlpha +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr badgeGravity +attr badgeStyle +attr badgeTextColor +attr barLength +attr barrierAllowsGoneWidgets +attr barrierDirection +attr barrierMargin +attr behavior_autoHide +attr behavior_autoShrink +attr behavior_draggable +attr behavior_expandedOffset +attr behavior_fitToContents +attr behavior_halfExpandedRatio +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr behavior_saveFlags +attr behavior_skipCollapsed +attr borderWidth +attr borderlessButtonStyle +attr bottomAppBarStyle +attr bottomNavigationStyle +attr bottomSheetDialogTheme +attr bottomSheetStyle +attr boxBackgroundColor +attr boxBackgroundMode +attr boxCollapsedPaddingTop +attr boxCornerRadiusBottomEnd +attr boxCornerRadiusBottomStart +attr boxCornerRadiusTopEnd +attr boxCornerRadiusTopStart +attr boxStrokeColor +attr boxStrokeErrorColor +attr boxStrokeWidth +attr boxStrokeWidthFocused +attr brightness +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr cardBackgroundColor +attr cardCornerRadius +attr cardElevation +attr cardForegroundColor +attr cardMaxElevation +attr cardPreventCornerOverlap +attr cardUseCompatPadding +attr cardViewStyle +attr chainUseRtl +attr checkboxStyle +attr checkedButton +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconMargin +attr checkedIconSize +attr checkedIconTint +attr checkedIconVisible +attr checkedTextViewStyle +attr chipBackgroundColor +attr chipCornerRadius +attr chipEndPadding +attr chipGroupStyle +attr chipIcon +attr chipIconEnabled +attr chipIconSize +attr chipIconTint +attr chipIconVisible +attr chipMinHeight +attr chipMinTouchTargetSize +attr chipSpacing +attr chipSpacingHorizontal +attr chipSpacingVertical +attr chipStandaloneStyle +attr chipStartPadding +attr chipStrokeColor +attr chipStrokeWidth +attr chipStyle +attr chipSurfaceColor +attr circleRadius +attr circularProgressIndicatorStyle +attr clickAction +attr clockFaceBackgroundColor +attr clockHandColor +attr clockIcon +attr clockNumberTextColor +attr closeIcon +attr closeIconEnabled +attr closeIconEndPadding +attr closeIconSize +attr closeIconStartPadding +attr closeIconTint +attr closeIconVisible +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr collapsedSize +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr collapsingToolbarLayoutStyle +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorOnBackground +attr colorOnError +attr colorOnPrimary +attr colorOnPrimarySurface +attr colorOnSecondary +attr colorOnSurface +attr colorPrimary +attr colorPrimaryDark +attr colorPrimarySurface +attr colorPrimaryVariant +attr colorSecondary +attr colorSecondaryVariant +attr colorSurface +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraintSetEnd +attr constraintSetStart +attr constraint_referenced_ids +attr constraints +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr contentPadding +attr contentPaddingBottom +attr contentPaddingEnd +attr contentPaddingLeft +attr contentPaddingRight +attr contentPaddingStart +attr contentPaddingTop +attr contentScrim +attr contrast +attr controlBackground +attr coordinatorLayoutStyle +attr cornerFamily +attr cornerFamilyBottomLeft +attr cornerFamilyBottomRight +attr cornerFamilyTopLeft +attr cornerFamilyTopRight +attr cornerRadius +attr cornerSize +attr cornerSizeBottomLeft +attr cornerSizeBottomRight +attr cornerSizeTopLeft +attr cornerSizeTopRight +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterOverflowTextColor +attr counterTextAppearance +attr counterTextColor +attr crossfade +attr currentState +attr curveFit +attr customBoolean +attr customColorDrawableValue +attr customColorValue +attr customDimension +attr customFloatValue +attr customIntegerValue +attr customNavigationLayout +attr customPixelDimension +attr customStringValue +attr dayInvalidStyle +attr daySelectedStyle +attr dayStyle +attr dayTodayStyle +attr defaultDuration +attr defaultQueryHint +attr defaultState +attr deltaPolarAngle +attr deltaPolarRadius +attr deriveConstraintsFrom +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr dragDirection +attr dragScale +attr dragThreshold +attr drawPath +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr duration +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr elevationOverlayColor +attr elevationOverlayEnabled +attr endIconCheckable +attr endIconContentDescription +attr endIconDrawable +attr endIconMode +attr endIconTint +attr endIconTintMode +attr enforceMaterialTheme +attr enforceTextAppearance +attr ensureMinTouchTargetSize +attr errorContentDescription +attr errorEnabled +attr errorIconDrawable +attr errorIconTint +attr errorIconTintMode +attr errorTextAppearance +attr errorTextColor +attr expandActivityOverflowButtonDrawable +attr expanded +attr expandedHintEnabled +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr extendMotionSpec +attr extendedFloatingActionButtonStyle +attr fabAlignmentMode +attr fabAnimationMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr firstBaselineToTopHeight +attr floatingActionButtonStyle +attr flow_firstHorizontalBias +attr flow_firstHorizontalStyle +attr flow_firstVerticalBias +attr flow_firstVerticalStyle +attr flow_horizontalAlign +attr flow_horizontalBias +attr flow_horizontalGap +attr flow_horizontalStyle +attr flow_lastHorizontalBias +attr flow_lastHorizontalStyle +attr flow_lastVerticalBias +attr flow_lastVerticalStyle +attr flow_maxElementsWrap +attr flow_padding +attr flow_verticalAlign +attr flow_verticalBias +attr flow_verticalGap +attr flow_verticalStyle +attr flow_wrapMode +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr foregroundInsidePadding +attr framePosition +attr gapBetweenBars +attr gestureInsetBottomIgnored +attr goIcon +attr haloColor +attr haloRadius +attr headerLayout +attr height +attr helperText +attr helperTextEnabled +attr helperTextTextAppearance +attr helperTextTextColor +attr hideAnimationBehavior +attr hideMotionSpec +attr hideOnContentScroll +attr hideOnScroll +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr hintTextColor +attr homeAsUpIndicator +attr homeLayout +attr horizontalOffset +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateAnimationType +attr indeterminateProgressStyle +attr indicatorColor +attr indicatorDirectionCircular +attr indicatorDirectionLinear +attr indicatorInset +attr indicatorSize +attr initialActivityCount +attr insetForeground +attr isLightTheme +attr isMaterialTheme +attr itemBackground +attr itemFillColor +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemMaxLines +attr itemPadding +attr itemRippleColor +attr itemShapeAppearance +attr itemShapeAppearanceOverlay +attr itemShapeFillColor +attr itemShapeInsetBottom +attr itemShapeInsetEnd +attr itemShapeInsetStart +attr itemShapeInsetTop +attr itemSpacing +attr itemStrokeColor +attr itemStrokeWidth +attr itemTextAppearance +attr itemTextAppearanceActive +attr itemTextAppearanceInactive +attr itemTextColor +attr keyPositionType +attr keyboardIcon +attr keylines +attr labelBehavior +attr labelStyle +attr labelVisibilityMode +attr lastBaselineToBottomHeight +attr layout +attr layoutDescription +attr layoutDuringTransition +attr layoutManager +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTag +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_optimizationLevel +attr layout_scrollFlags +attr layout_scrollInterpolator +attr liftOnScroll +attr liftOnScrollTargetViewId +attr limitBoundsTo +attr lineHeight +attr lineSpacing +attr linearProgressIndicatorStyle +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr materialAlertDialogBodyTextStyle +attr materialAlertDialogTheme +attr materialAlertDialogTitleIconStyle +attr materialAlertDialogTitlePanelStyle +attr materialAlertDialogTitleTextStyle +attr materialButtonOutlinedStyle +attr materialButtonStyle +attr materialButtonToggleGroupStyle +attr materialCalendarDay +attr materialCalendarFullscreenTheme +attr materialCalendarHeaderCancelButton +attr materialCalendarHeaderConfirmButton +attr materialCalendarHeaderDivider +attr materialCalendarHeaderLayout +attr materialCalendarHeaderSelection +attr materialCalendarHeaderTitle +attr materialCalendarHeaderToggleButton +attr materialCalendarMonth +attr materialCalendarMonthNavigationButton +attr materialCalendarStyle +attr materialCalendarTheme +attr materialCalendarYearNavigationButton +attr materialCardViewStyle +attr materialCircleRadius +attr materialClockStyle +attr materialThemeOverlay +attr materialTimePickerStyle +attr materialTimePickerTheme +attr maxAcceleration +attr maxActionInlineWidth +attr maxButtonHeight +attr maxCharacterCount +attr maxHeight +attr maxImageSize +attr maxLines +attr maxVelocity +attr maxWidth +attr measureWithLargestChild +attr menu +attr minHeight +attr minHideDelay +attr minSeparation +attr minTouchTargetSize +attr minWidth +attr mock_diagonalsColor +attr mock_label +attr mock_labelBackgroundColor +attr mock_labelColor +attr mock_showDiagonals +attr mock_showLabel +attr motionDebug +attr motionInterpolator +attr motionPathRotate +attr motionProgress +attr motionStagger +attr motionTarget +attr motion_postLayoutCollision +attr motion_triggerOnCollision +attr moveWhenScrollAtTop +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationIconTint +attr navigationMode +attr navigationViewStyle +attr nestedScrollFlags +attr nestedScrollable +attr number +attr numericModifiers +attr onCross +attr onHide +attr onNegativeCross +attr onPositiveCross +attr onShow +attr onTouchUp +attr overlapAnchor +attr overlay +attr paddingBottomNoButtons +attr paddingBottomSystemWindowInsets +attr paddingEnd +attr paddingLeftSystemWindowInsets +attr paddingRightSystemWindowInsets +attr paddingStart +attr paddingTopNoTitle +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr passwordToggleContentDescription +attr passwordToggleDrawable +attr passwordToggleEnabled +attr passwordToggleTint +attr passwordToggleTintMode +attr pathMotionArc +attr path_percent +attr percentHeight +attr percentWidth +attr percentX +attr percentY +attr perpendicularPath_percent +attr pivotAnchor +attr placeholderText +attr placeholderTextAppearance +attr placeholderTextColor +attr placeholder_emptyVisibility +attr popupMenuBackground +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr prefixText +attr prefixTextAppearance +attr prefixTextColor +attr preserveIconSpacing +attr pressedTranslationZ +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr rangeFillColor +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr recyclerViewStyle +attr region_heightLessThan +attr region_heightMoreThan +attr region_widthLessThan +attr region_widthMoreThan +attr reverseLayout +attr rippleColor +attr round +attr roundPercent +attr saturation +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr selectionRequired +attr selectorSize +attr shapeAppearance +attr shapeAppearanceLargeComponent +attr shapeAppearanceMediumComponent +attr shapeAppearanceOverlay +attr shapeAppearanceSmallComponent +attr showAnimationBehavior +attr showAsAction +attr showDelay +attr showDividers +attr showMotionSpec +attr showPaths +attr showText +attr showTitle +attr shrinkMotionSpec +attr singleChoiceItemLayout +attr singleLine +attr singleSelection +attr sizePercent +attr sliderStyle +attr snackbarButtonStyle +attr snackbarStyle +attr snackbarTextViewStyle +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr stackFromEnd +attr staggered +attr startIconCheckable +attr startIconContentDescription +attr startIconDrawable +attr startIconTint +attr startIconTintMode +attr state_above_anchor +attr state_collapsed +attr state_collapsible +attr state_dragged +attr state_liftable +attr state_lifted +attr statusBarBackground +attr statusBarForeground +attr statusBarScrim +attr strokeColor +attr strokeWidth +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suffixText +attr suffixTextAppearance +attr suffixTextColor +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIconTint +attr tabIconTintMode +attr tabIndicator +attr tabIndicatorAnimationDuration +attr tabIndicatorAnimationMode +attr tabIndicatorColor +attr tabIndicatorFullWidth +attr tabIndicatorGravity +attr tabIndicatorHeight +attr tabInlineLabel +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabRippleColor +attr tabSelectedTextColor +attr tabStyle +attr tabTextAppearance +attr tabTextColor +attr tabUnboundedRipple +attr targetId +attr telltales_tailColor +attr telltales_tailScale +attr telltales_velocityMode +attr textAllCaps +attr textAppearanceBody1 +attr textAppearanceBody2 +attr textAppearanceButton +attr textAppearanceCaption +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +attr textAppearanceLargePopupMenu +attr textAppearanceLineHeightEnabled +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearanceOverline +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textAppearanceSubtitle1 +attr textAppearanceSubtitle2 +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textEndPadding +attr textInputLayoutFocusedRectEnabled +attr textInputStyle +attr textLocale +attr textStartPadding +attr theme +attr themeLineHeight +attr thickness +attr thumbColor +attr thumbElevation +attr thumbRadius +attr thumbStrokeColor +attr thumbStrokeWidth +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickColor +attr tickColorActive +attr tickColorInactive +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tickVisible +attr tint +attr tintMode +attr title +attr titleEnabled +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarId +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipStyle +attr tooltipText +attr touchAnchorId +attr touchAnchorSide +attr touchRegionId +attr track +attr trackColor +attr trackColorActive +attr trackColorInactive +attr trackCornerRadius +attr trackHeight +attr trackThickness +attr trackTint +attr trackTintMode +attr transitionDisable +attr transitionEasing +attr transitionFlags +attr transitionPathRotate +attr transitionShapeAppearance +attr triggerId +attr triggerReceiver +attr triggerSlack +attr ttcIndex +attr useCompatPadding +attr useMaterialThemeColors +attr values +attr verticalOffset +attr viewInflaterClass +attr visibilityMode +attr voiceIcon +attr warmth +attr waveDecay +attr waveOffset +attr wavePeriod +attr waveShape +attr waveVariesBy +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +attr yearSelectedStyle +attr yearStyle +attr yearTodayStyle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool mtrl_btn_textappearance_all_caps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_decor_view_status_guard +color abc_decor_view_status_guard_light +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color black +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color cardview_dark_background +color cardview_light_background +color cardview_shadow_end_color +color cardview_shadow_start_color +color checkbox_themeable_attribute_color +color design_bottom_navigation_shadow_color +color design_box_stroke_color +color design_dark_default_color_background +color design_dark_default_color_error +color design_dark_default_color_on_background +color design_dark_default_color_on_error +color design_dark_default_color_on_primary +color design_dark_default_color_on_secondary +color design_dark_default_color_on_surface +color design_dark_default_color_primary +color design_dark_default_color_primary_dark +color design_dark_default_color_primary_variant +color design_dark_default_color_secondary +color design_dark_default_color_secondary_variant +color design_dark_default_color_surface +color design_default_color_background +color design_default_color_error +color design_default_color_on_background +color design_default_color_on_error +color design_default_color_on_primary +color design_default_color_on_secondary +color design_default_color_on_surface +color design_default_color_primary +color design_default_color_primary_dark +color design_default_color_primary_variant +color design_default_color_secondary +color design_default_color_secondary_variant +color design_default_color_surface +color design_error +color design_fab_shadow_end_color +color design_fab_shadow_mid_color +color design_fab_shadow_start_color +color design_fab_stroke_end_inner_color +color design_fab_stroke_end_outer_color +color design_fab_stroke_top_inner_color +color design_fab_stroke_top_outer_color +color design_icon_tint +color design_snackbar_background_color +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material_dark +color error_color_material_light +color foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +color light_blue +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_cursor_color +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color material_on_background_disabled +color material_on_background_emphasis_high_type +color material_on_background_emphasis_medium +color material_on_primary_disabled +color material_on_primary_emphasis_high_type +color material_on_primary_emphasis_medium +color material_on_surface_disabled +color material_on_surface_emphasis_high_type +color material_on_surface_emphasis_medium +color material_on_surface_stroke +color material_slider_active_tick_marks_color +color material_slider_active_track_color +color material_slider_halo_color +color material_slider_inactive_tick_marks_color +color material_slider_inactive_track_color +color material_slider_thumb_color +color material_timepicker_button_background +color material_timepicker_button_stroke +color material_timepicker_clock_text_color +color material_timepicker_clockface +color material_timepicker_modebutton_tint +color mtrl_bottom_nav_colored_item_tint +color mtrl_bottom_nav_colored_ripple_color +color mtrl_bottom_nav_item_tint +color mtrl_bottom_nav_ripple_color +color mtrl_btn_bg_color_selector +color mtrl_btn_ripple_color +color mtrl_btn_stroke_color_selector +color mtrl_btn_text_btn_bg_color_selector +color mtrl_btn_text_btn_ripple_color +color mtrl_btn_text_color_disabled +color mtrl_btn_text_color_selector +color mtrl_btn_transparent_bg_color +color mtrl_calendar_item_stroke_color +color mtrl_calendar_selected_range +color mtrl_card_view_foreground +color mtrl_card_view_ripple +color mtrl_chip_background_color +color mtrl_chip_close_icon_tint +color mtrl_chip_surface_color +color mtrl_chip_text_color +color mtrl_choice_chip_background_color +color mtrl_choice_chip_ripple_color +color mtrl_choice_chip_text_color +color mtrl_error +color mtrl_fab_bg_color_selector +color mtrl_fab_icon_text_color_selector +color mtrl_fab_ripple_color +color mtrl_filled_background_color +color mtrl_filled_icon_tint +color mtrl_filled_stroke_color +color mtrl_indicator_text_color +color mtrl_navigation_item_background_color +color mtrl_navigation_item_icon_tint +color mtrl_navigation_item_text_color +color mtrl_on_primary_text_btn_text_color_selector +color mtrl_on_surface_ripple_color +color mtrl_outlined_icon_tint +color mtrl_outlined_stroke_color +color mtrl_popupmenu_overlay_color +color mtrl_scrim_color +color mtrl_tabs_colored_ripple_color +color mtrl_tabs_icon_color_selector +color mtrl_tabs_icon_color_selector_colored +color mtrl_tabs_legacy_text_color_selector +color mtrl_tabs_ripple_color +color mtrl_text_btn_text_color_selector +color mtrl_textinput_default_box_stroke_color +color mtrl_textinput_disabled_color +color mtrl_textinput_filled_box_default_background_color +color mtrl_textinput_focused_box_stroke_color +color mtrl_textinput_hovered_box_stroke_color +color notification_action_color_filter +color notification_icon_bg_color +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color purple_700 +color radiobutton_themeable_attribute_color +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color test_mtrl_calendar_day +color test_mtrl_calendar_day_selected +color tooltip_background_dark +color tooltip_background_light +color white +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen action_bar_size +dimen appcompat_dialog_background_inset +dimen cardview_compat_inset_shadow +dimen cardview_default_elevation +dimen cardview_default_radius +dimen clock_face_margin_start +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 default_dimension +dimen design_appbar_elevation +dimen design_bottom_navigation_active_item_max_width +dimen design_bottom_navigation_active_item_min_width +dimen design_bottom_navigation_active_text_size +dimen design_bottom_navigation_elevation +dimen design_bottom_navigation_height +dimen design_bottom_navigation_icon_size +dimen design_bottom_navigation_item_max_width +dimen design_bottom_navigation_item_min_width +dimen design_bottom_navigation_label_padding +dimen design_bottom_navigation_margin +dimen design_bottom_navigation_shadow_height +dimen design_bottom_navigation_text_size +dimen design_bottom_sheet_elevation +dimen design_bottom_sheet_modal_elevation +dimen design_bottom_sheet_peek_height_min +dimen design_fab_border_width +dimen design_fab_elevation +dimen design_fab_image_size +dimen design_fab_size_mini +dimen design_fab_size_normal +dimen design_fab_translation_z_hovered_focused +dimen design_fab_translation_z_pressed +dimen design_navigation_elevation +dimen design_navigation_icon_padding +dimen design_navigation_icon_size +dimen design_navigation_item_horizontal_padding +dimen design_navigation_item_icon_padding +dimen design_navigation_max_width +dimen design_navigation_padding_bottom +dimen design_navigation_separator_vertical_padding +dimen design_snackbar_action_inline_max_width +dimen design_snackbar_action_text_color_alpha +dimen design_snackbar_background_corner_radius +dimen design_snackbar_elevation +dimen design_snackbar_extra_spacing_horizontal +dimen design_snackbar_max_width +dimen design_snackbar_min_width +dimen design_snackbar_padding_horizontal +dimen design_snackbar_padding_vertical +dimen design_snackbar_padding_vertical_2lines +dimen design_snackbar_text_size +dimen design_tab_max_width +dimen design_tab_scrollable_min_width +dimen design_tab_text_size +dimen design_tab_text_size_2line +dimen design_textinput_caption_translate_y +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen material_clock_display_padding +dimen material_clock_face_margin_top +dimen material_clock_hand_center_dot_radius +dimen material_clock_hand_padding +dimen material_clock_hand_stroke_width +dimen material_clock_number_text_size +dimen material_clock_period_toggle_height +dimen material_clock_period_toggle_margin_left +dimen material_clock_period_toggle_width +dimen material_clock_size +dimen material_cursor_inset_bottom +dimen material_cursor_inset_top +dimen material_cursor_width +dimen material_emphasis_disabled +dimen material_emphasis_high_type +dimen material_emphasis_medium +dimen material_filled_edittext_font_1_3_padding_bottom +dimen material_filled_edittext_font_1_3_padding_top +dimen material_filled_edittext_font_2_0_padding_bottom +dimen material_filled_edittext_font_2_0_padding_top +dimen material_font_1_3_box_collapsed_padding_top +dimen material_font_2_0_box_collapsed_padding_top +dimen material_helper_text_default_padding_top +dimen material_helper_text_font_1_3_padding_horizontal +dimen material_helper_text_font_1_3_padding_top +dimen material_input_text_to_prefix_suffix_padding +dimen material_text_view_test_line_height +dimen material_text_view_test_line_height_override +dimen material_timepicker_dialog_buttons_margin_top +dimen mtrl_alert_dialog_background_inset_bottom +dimen mtrl_alert_dialog_background_inset_end +dimen mtrl_alert_dialog_background_inset_start +dimen mtrl_alert_dialog_background_inset_top +dimen mtrl_alert_dialog_picker_background_inset +dimen mtrl_badge_horizontal_edge_offset +dimen mtrl_badge_long_text_horizontal_padding +dimen mtrl_badge_radius +dimen mtrl_badge_text_horizontal_edge_offset +dimen mtrl_badge_text_size +dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset +dimen mtrl_badge_toolbar_action_menu_item_vertical_offset +dimen mtrl_badge_with_text_radius +dimen mtrl_bottomappbar_fabOffsetEndMode +dimen mtrl_bottomappbar_fab_bottom_margin +dimen mtrl_bottomappbar_fab_cradle_margin +dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius +dimen mtrl_bottomappbar_fab_cradle_vertical_offset +dimen mtrl_bottomappbar_height +dimen mtrl_btn_corner_radius +dimen mtrl_btn_dialog_btn_min_width +dimen mtrl_btn_disabled_elevation +dimen mtrl_btn_disabled_z +dimen mtrl_btn_elevation +dimen mtrl_btn_focused_z +dimen mtrl_btn_hovered_z +dimen mtrl_btn_icon_btn_padding_left +dimen mtrl_btn_icon_padding +dimen mtrl_btn_inset +dimen mtrl_btn_letter_spacing +dimen mtrl_btn_padding_bottom +dimen mtrl_btn_padding_left +dimen mtrl_btn_padding_right +dimen mtrl_btn_padding_top +dimen mtrl_btn_pressed_z +dimen mtrl_btn_snackbar_margin_horizontal +dimen mtrl_btn_stroke_size +dimen mtrl_btn_text_btn_icon_padding +dimen mtrl_btn_text_btn_padding_left +dimen mtrl_btn_text_btn_padding_right +dimen mtrl_btn_text_size +dimen mtrl_btn_z +dimen mtrl_calendar_action_confirm_button_min_width +dimen mtrl_calendar_action_height +dimen mtrl_calendar_action_padding +dimen mtrl_calendar_bottom_padding +dimen mtrl_calendar_content_padding +dimen mtrl_calendar_day_corner +dimen mtrl_calendar_day_height +dimen mtrl_calendar_day_horizontal_padding +dimen mtrl_calendar_day_today_stroke +dimen mtrl_calendar_day_vertical_padding +dimen mtrl_calendar_day_width +dimen mtrl_calendar_days_of_week_height +dimen mtrl_calendar_dialog_background_inset +dimen mtrl_calendar_header_content_padding +dimen mtrl_calendar_header_content_padding_fullscreen +dimen mtrl_calendar_header_divider_thickness +dimen mtrl_calendar_header_height +dimen mtrl_calendar_header_height_fullscreen +dimen mtrl_calendar_header_selection_line_height +dimen mtrl_calendar_header_text_padding +dimen mtrl_calendar_header_toggle_margin_bottom +dimen mtrl_calendar_header_toggle_margin_top +dimen mtrl_calendar_landscape_header_width +dimen mtrl_calendar_maximum_default_fullscreen_minor_axis +dimen mtrl_calendar_month_horizontal_padding +dimen mtrl_calendar_month_vertical_padding +dimen mtrl_calendar_navigation_bottom_padding +dimen mtrl_calendar_navigation_height +dimen mtrl_calendar_navigation_top_padding +dimen mtrl_calendar_pre_l_text_clip_padding +dimen mtrl_calendar_selection_baseline_to_top_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_bottom +dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +dimen mtrl_calendar_selection_text_baseline_to_top +dimen mtrl_calendar_text_input_padding_top +dimen mtrl_calendar_title_baseline_to_top +dimen mtrl_calendar_title_baseline_to_top_fullscreen +dimen mtrl_calendar_year_corner +dimen mtrl_calendar_year_height +dimen mtrl_calendar_year_horizontal_padding +dimen mtrl_calendar_year_vertical_padding +dimen mtrl_calendar_year_width +dimen mtrl_card_checked_icon_margin +dimen mtrl_card_checked_icon_size +dimen mtrl_card_corner_radius +dimen mtrl_card_dragged_z +dimen mtrl_card_elevation +dimen mtrl_card_spacing +dimen mtrl_chip_pressed_translation_z +dimen mtrl_chip_text_size +dimen mtrl_edittext_rectangle_top_offset +dimen mtrl_exposed_dropdown_menu_popup_elevation +dimen mtrl_exposed_dropdown_menu_popup_vertical_offset +dimen mtrl_exposed_dropdown_menu_popup_vertical_padding +dimen mtrl_extended_fab_bottom_padding +dimen mtrl_extended_fab_corner_radius +dimen mtrl_extended_fab_disabled_elevation +dimen mtrl_extended_fab_disabled_translation_z +dimen mtrl_extended_fab_elevation +dimen mtrl_extended_fab_end_padding +dimen mtrl_extended_fab_end_padding_icon +dimen mtrl_extended_fab_icon_size +dimen mtrl_extended_fab_icon_text_spacing +dimen mtrl_extended_fab_min_height +dimen mtrl_extended_fab_min_width +dimen mtrl_extended_fab_start_padding +dimen mtrl_extended_fab_start_padding_icon +dimen mtrl_extended_fab_top_padding +dimen mtrl_extended_fab_translation_z_base +dimen mtrl_extended_fab_translation_z_hovered_focused +dimen mtrl_extended_fab_translation_z_pressed +dimen mtrl_fab_elevation +dimen mtrl_fab_min_touch_target +dimen mtrl_fab_translation_z_hovered_focused +dimen mtrl_fab_translation_z_pressed +dimen mtrl_high_ripple_default_alpha +dimen mtrl_high_ripple_focused_alpha +dimen mtrl_high_ripple_hovered_alpha +dimen mtrl_high_ripple_pressed_alpha +dimen mtrl_large_touch_target +dimen mtrl_low_ripple_default_alpha +dimen mtrl_low_ripple_focused_alpha +dimen mtrl_low_ripple_hovered_alpha +dimen mtrl_low_ripple_pressed_alpha +dimen mtrl_min_touch_target_size +dimen mtrl_navigation_elevation +dimen mtrl_navigation_item_horizontal_padding +dimen mtrl_navigation_item_icon_padding +dimen mtrl_navigation_item_icon_size +dimen mtrl_navigation_item_shape_horizontal_margin +dimen mtrl_navigation_item_shape_vertical_margin +dimen mtrl_progress_circular_inset +dimen mtrl_progress_circular_inset_extra_small +dimen mtrl_progress_circular_inset_medium +dimen mtrl_progress_circular_inset_small +dimen mtrl_progress_circular_radius +dimen mtrl_progress_circular_size +dimen mtrl_progress_circular_size_extra_small +dimen mtrl_progress_circular_size_medium +dimen mtrl_progress_circular_size_small +dimen mtrl_progress_circular_track_thickness_extra_small +dimen mtrl_progress_circular_track_thickness_medium +dimen mtrl_progress_circular_track_thickness_small +dimen mtrl_progress_indicator_full_rounded_corner_radius +dimen mtrl_progress_track_thickness +dimen mtrl_shape_corner_size_large_component +dimen mtrl_shape_corner_size_medium_component +dimen mtrl_shape_corner_size_small_component +dimen mtrl_slider_halo_radius +dimen mtrl_slider_label_padding +dimen mtrl_slider_label_radius +dimen mtrl_slider_label_square_side +dimen mtrl_slider_thumb_elevation +dimen mtrl_slider_thumb_radius +dimen mtrl_slider_track_height +dimen mtrl_slider_track_side_padding +dimen mtrl_slider_track_top +dimen mtrl_slider_widget_height +dimen mtrl_snackbar_action_text_color_alpha +dimen mtrl_snackbar_background_corner_radius +dimen mtrl_snackbar_background_overlay_color_alpha +dimen mtrl_snackbar_margin +dimen mtrl_snackbar_message_margin_horizontal +dimen mtrl_snackbar_padding_horizontal +dimen mtrl_switch_thumb_elevation +dimen mtrl_textinput_box_corner_radius_medium +dimen mtrl_textinput_box_corner_radius_small +dimen mtrl_textinput_box_label_cutout_padding +dimen mtrl_textinput_box_stroke_width_default +dimen mtrl_textinput_box_stroke_width_focused +dimen mtrl_textinput_counter_margin_start +dimen mtrl_textinput_end_icon_margin_start +dimen mtrl_textinput_outline_box_expanded_padding +dimen mtrl_textinput_start_icon_margin_end +dimen mtrl_toolbar_default_height +dimen mtrl_tooltip_arrowSize +dimen mtrl_tooltip_cornerSize +dimen mtrl_tooltip_minHeight +dimen mtrl_tooltip_minWidth +dimen mtrl_tooltip_padding +dimen mtrl_transition_shared_axis_slide_distance +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 test_mtrl_calendar_day_cornerSize +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable avd_hide_password +drawable avd_show_password +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable btn_style +drawable design_bottom_navigation_item_background +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +drawable ic_clock_black_24dp +drawable ic_keyboard_black_24dp +drawable ic_mtrl_checked_circle +drawable ic_mtrl_chip_checked_black +drawable ic_mtrl_chip_checked_circle +drawable ic_mtrl_chip_close_circle +drawable material_cursor_drawable +drawable material_ic_calendar_black_24dp +drawable material_ic_clear_black_24dp +drawable material_ic_edit_black_24dp +drawable material_ic_keyboard_arrow_left_black_24dp +drawable material_ic_keyboard_arrow_next_black_24dp +drawable material_ic_keyboard_arrow_previous_black_24dp +drawable material_ic_keyboard_arrow_right_black_24dp +drawable material_ic_menu_arrow_down_black_24dp +drawable material_ic_menu_arrow_up_black_24dp +drawable mtrl_dialog_background +drawable mtrl_dropdown_arrow +drawable mtrl_ic_arrow_drop_down +drawable mtrl_ic_arrow_drop_up +drawable mtrl_ic_cancel +drawable mtrl_ic_error +drawable mtrl_popupmenu_background +drawable mtrl_popupmenu_background_dark +drawable mtrl_tabs_default_indicator +drawable navigation_empty_icon +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 test_custom_background +drawable tooltip_frame_dark +drawable tooltip_frame_light +id BOTTOM_END +id BOTTOM_START +id NO_DEBUG +id SHOW_ALL +id SHOW_PATH +id SHOW_PROGRESS +id TOP_END +id TOP_START +id accelerate +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id add +id alertTitle +id aligned +id animateToEnd +id animateToStart +id asConfigured +id async +id auto +id autoComplete +id autoCompleteToEnd +id autoCompleteToStart +id barrier +id baseline +id blocking +id bottom +id bounce +id buttonPanel +id cancel_button +id center +id chain +id checkbox +id checked +id chip +id chip1 +id chip2 +id chip3 +id chip_group +id chronometer +id circle_center +id clear_text +id clockwise +id confirm_button +id container +id content +id contentPanel +id contiguous +id coordinator +id cos +id counterclockwise +id custom +id customPanel +id cut +id date_picker_actions +id decelerate +id decelerateAndComplete +id decor_content_parent +id default_activity_button +id deltaRelative +id design_bottom_sheet +id design_menu_item_action_area +id design_menu_item_action_area_stub +id design_menu_item_text +id design_navigation_view +id dialog_button +id disjoint +id dragDown +id dragEnd +id dragLeft +id dragRight +id dragStart +id dragUp +id dropdown_menu +id easeIn +id easeInOut +id easeOut +id edit_query +id elastic +id end +id endToStart +id expand_activities_button +id expanded_menu +id fade +id fill +id filled +id fixed +id flip +id floating +id forever +id ghost_view +id ghost_view_holder +id gone +id group_divider +id guideline +id header_title +id home +id honorRequest +id icon +id icon_group +id ignore +id ignoreRequest +id image +id info +id invisible +id inward +id italic +id item_touch_helper_previous_elevation +id jumpToEnd +id jumpToStart +id labelGroup +id labeled +id largeLabel +id layout +id left +id leftToRight +id line1 +id line3 +id linear +id listMode +id list_item +id masked +id material_clock_display +id material_clock_face +id material_clock_hand +id material_clock_period_am_button +id material_clock_period_pm_button +id material_clock_period_toggle +id material_hour_text_input +id material_hour_tv +id material_label +id material_minute_text_input +id material_minute_tv +id material_textinput_timepicker +id material_timepicker_cancel_button +id material_timepicker_container +id material_timepicker_edit_text +id material_timepicker_mode_button +id material_timepicker_ok_button +id material_timepicker_view +id material_value_index +id message +id middle +id mini +id month_grid +id month_navigation_bar +id month_navigation_fragment_toggle +id month_navigation_next +id month_navigation_previous +id month_title +id motion_base +id mtrl_anchor_parent +id mtrl_calendar_day_selector_frame +id mtrl_calendar_days_of_week +id mtrl_calendar_frame +id mtrl_calendar_main_pane +id mtrl_calendar_months +id mtrl_calendar_selection_frame +id mtrl_calendar_text_input_frame +id mtrl_calendar_year_selector_frame +id mtrl_card_checked_layer_id +id mtrl_child_content_container +id mtrl_internal_children_alpha_tag +id mtrl_motion_snapshot_view +id mtrl_picker_fullscreen +id mtrl_picker_header +id mtrl_picker_header_selection_text +id mtrl_picker_header_title_and_selection +id mtrl_picker_header_toggle +id mtrl_picker_text_input_date +id mtrl_picker_text_input_range_end +id mtrl_picker_text_input_range_start +id mtrl_picker_title_text +id mtrl_view_tag_bottom_padding +id multiply +id navigation_header_container +id none +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id off +id on +id outline +id outward +id packed +id parallax +id parent +id parentPanel +id parentRelative +id parent_matrix +id password_toggle +id path +id pathRelative +id percent +id pin +id position +id postLayout +id progress_circular +id progress_horizontal +id radio +id rectangles +id reverseSawtooth +id right +id rightToLeft +id right_icon +id right_side +id rounded +id row_index_key +id save_non_transition_alpha +id save_overlay_view +id sawtooth +id scale +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id scrollable +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id selected +id selection_type +id shortcut +id sin +id slide +id smallLabel +id snackbar_action +id snackbar_text +id spacer +id spline +id split_action_bar +id spread +id spread_inside +id square +id src_atop +id src_in +id src_over +id standard +id start +id startHorizontal +id startToEnd +id startVertical +id staticLayout +id staticPostLayout +id stop +id stretch +id submenuarrow +id submit_area +id tabMode +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_screen_reader_focusable +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id test_checkbox_android_button_tint +id test_checkbox_app_button_tint +id test_radiobutton_android_button_tint +id test_radiobutton_app_button_tint +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id text_input_end_icon +id text_input_error_icon +id text_input_start_icon +id textinput_counter +id textinput_error +id textinput_helper_text +id textinput_placeholder +id textinput_prefix_text +id textinput_suffix_text +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id touch_outside +id transition_current_scene +id transition_layout_save +id transition_position +id transition_scene_layoutid_cache +id transition_transform +id triangle +id unchecked +id uniform +id unlabeled +id up +id view_offset_helper +id visible +id withinBounds +id wrap +id wrap_content +id zero_corner_chip +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer app_bar_elevation_anim_duration +integer bottom_sheet_slide_duration +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer design_snackbar_text_max_lines +integer design_tab_indicator_anim_duration_ms +integer hide_password_duration +integer mtrl_badge_max_character_count +integer mtrl_btn_anim_delay_ms +integer mtrl_btn_anim_duration_ms +integer mtrl_calendar_header_orientation +integer mtrl_calendar_selection_text_lines +integer mtrl_calendar_year_selector_span +integer mtrl_card_anim_delay_ms +integer mtrl_card_anim_duration_ms +integer mtrl_chip_anim_duration +integer mtrl_tab_indicator_anim_duration_ms +integer show_password_duration +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +interpolator mtrl_fast_out_linear_in +interpolator mtrl_fast_out_slow_in +interpolator mtrl_linear +interpolator mtrl_linear_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout custom_dialog +layout design_bottom_navigation_item +layout design_bottom_sheet_dialog +layout design_layout_snackbar +layout design_layout_snackbar_include +layout design_layout_tab_icon +layout design_layout_tab_text +layout design_menu_item_action_area +layout design_navigation_item +layout design_navigation_item_header +layout design_navigation_item_separator +layout design_navigation_item_subheader +layout design_navigation_menu +layout design_navigation_menu_item +layout design_text_input_end_icon +layout design_text_input_start_icon +layout layout_loading +layout material_chip_input_combo +layout material_clock_display +layout material_clock_display_divider +layout material_clock_period_toggle +layout material_clock_period_toggle_land +layout material_clockface_textview +layout material_clockface_view +layout material_radial_view_group +layout material_textinput_timepicker +layout material_time_chip +layout material_time_input +layout material_timepicker +layout material_timepicker_dialog +layout material_timepicker_textinput_display +layout mtrl_alert_dialog +layout mtrl_alert_dialog_actions +layout mtrl_alert_dialog_title +layout mtrl_alert_select_dialog_item +layout mtrl_alert_select_dialog_multichoice +layout mtrl_alert_select_dialog_singlechoice +layout mtrl_calendar_day +layout mtrl_calendar_day_of_week +layout mtrl_calendar_days_of_week +layout mtrl_calendar_horizontal +layout mtrl_calendar_month +layout mtrl_calendar_month_labeled +layout mtrl_calendar_month_navigation +layout mtrl_calendar_months +layout mtrl_calendar_vertical +layout mtrl_calendar_year +layout mtrl_layout_snackbar +layout mtrl_layout_snackbar_include +layout mtrl_picker_actions +layout mtrl_picker_dialog +layout mtrl_picker_fullscreen +layout mtrl_picker_header_dialog +layout mtrl_picker_header_fullscreen +layout mtrl_picker_header_selection_text +layout mtrl_picker_header_title_text +layout mtrl_picker_header_toggle +layout mtrl_picker_text_input_date +layout mtrl_picker_text_input_date_range +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 select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +layout test_action_chip +layout test_chip_zero_corner_radius +layout test_design_checkbox +layout test_design_radiobutton +layout test_reflow_chipgroup +layout test_toolbar +layout test_toolbar_custom_background +layout test_toolbar_elevation +layout test_toolbar_surface +layout text_view_with_line_height_from_appearance +layout text_view_with_line_height_from_layout +layout text_view_with_line_height_from_style +layout text_view_with_theme_line_height +layout text_view_without_line_height +plurals mtrl_badge_content_description +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string app_name +string appbar_scrolling_view_behavior +string bottom_sheet_behavior +string bottomsheet_action_expand_halfway +string character_counter_content_description +string character_counter_overflowed_content_description +string character_counter_pattern +string chip_text +string clear_text_end_icon_content_description +string error_icon_content_description +string exposed_dropdown_menu_content_description +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +string hide_bottom_view_on_scroll_behavior +string icon_content_description +string item_view_role_description +string material_clock_display_divider +string material_clock_toggle_content_description +string material_hour_selection +string material_hour_suffix +string material_minute_selection +string material_minute_suffix +string material_slider_range_end +string material_slider_range_start +string material_timepicker_am +string material_timepicker_clock_mode_description +string material_timepicker_hour +string material_timepicker_minute +string material_timepicker_pm +string material_timepicker_select_time +string material_timepicker_text_input_mode_description +string mtrl_badge_numberless_content_description +string mtrl_chip_close_icon_content_description +string mtrl_exceed_max_badge_number_content_description +string mtrl_exceed_max_badge_number_suffix +string mtrl_picker_a11y_next_month +string mtrl_picker_a11y_prev_month +string mtrl_picker_announce_current_selection +string mtrl_picker_cancel +string mtrl_picker_confirm +string mtrl_picker_date_header_selected +string mtrl_picker_date_header_title +string mtrl_picker_date_header_unselected +string mtrl_picker_day_of_week_column_header +string mtrl_picker_invalid_format +string mtrl_picker_invalid_format_example +string mtrl_picker_invalid_format_use +string mtrl_picker_invalid_range +string mtrl_picker_navigate_to_year_description +string mtrl_picker_out_of_range +string mtrl_picker_range_header_only_end_selected +string mtrl_picker_range_header_only_start_selected +string mtrl_picker_range_header_selected +string mtrl_picker_range_header_title +string mtrl_picker_range_header_unselected +string mtrl_picker_save +string mtrl_picker_text_input_date_hint +string mtrl_picker_text_input_date_range_end_hint +string mtrl_picker_text_input_date_range_start_hint +string mtrl_picker_text_input_day_abbr +string mtrl_picker_text_input_month_abbr +string mtrl_picker_text_input_year_abbr +string mtrl_picker_toggle_to_calendar_input_mode +string mtrl_picker_toggle_to_day_selection +string mtrl_picker_toggle_to_text_input_mode +string mtrl_picker_toggle_to_year_selection +string password_toggle_content_description +string path_password_eye +string path_password_eye_mask_strike_through +string path_password_eye_mask_visible +string path_password_strike_through +string search_menu_title +string status_bar_notification_info_overflow +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style AndroidThemeColorAccentYellow +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Design_BottomSheetDialog +style Animation_MaterialComponents_BottomSheetDialog +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_CardView +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_MaterialAlertDialog_MaterialComponents_Title_Icon +style Base_MaterialAlertDialog_MaterialComponents_Title_Panel +style Base_MaterialAlertDialog_MaterialComponents_Title_Text +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_MaterialComponents_Badge +style Base_TextAppearance_MaterialComponents_Button +style Base_TextAppearance_MaterialComponents_Headline6 +style Base_TextAppearance_MaterialComponents_Subtitle2 +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_ThemeOverlay_MaterialComponents_Dialog +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_Theme_MaterialComponents +style Base_Theme_MaterialComponents_Bridge +style Base_Theme_MaterialComponents_CompactMenu +style Base_Theme_MaterialComponents_Dialog +style Base_Theme_MaterialComponents_DialogWhenLarge +style Base_Theme_MaterialComponents_Dialog_Alert +style Base_Theme_MaterialComponents_Dialog_Bridge +style Base_Theme_MaterialComponents_Dialog_FixedSize +style Base_Theme_MaterialComponents_Dialog_MinWidth +style Base_Theme_MaterialComponents_Light +style Base_Theme_MaterialComponents_Light_Bridge +style Base_Theme_MaterialComponents_Light_DarkActionBar +style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_Theme_MaterialComponents_Light_Dialog +style Base_Theme_MaterialComponents_Light_DialogWhenLarge +style Base_Theme_MaterialComponents_Light_Dialog_Alert +style Base_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_Theme_MaterialComponents_Light_Dialog_FixedSize +style Base_Theme_MaterialComponents_Light_Dialog_MinWidth +style Base_V14_ThemeOverlay_MaterialComponents_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +style Base_V14_Theme_MaterialComponents +style Base_V14_Theme_MaterialComponents_Bridge +style Base_V14_Theme_MaterialComponents_Dialog +style Base_V14_Theme_MaterialComponents_Dialog_Bridge +style Base_V14_Theme_MaterialComponents_Light +style Base_V14_Theme_MaterialComponents_Light_Bridge +style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_V14_Theme_MaterialComponents_Light_Dialog +style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V21_Theme_MaterialComponents +style Base_V21_Theme_MaterialComponents_Dialog +style Base_V21_Theme_MaterialComponents_Light +style Base_V21_Theme_MaterialComponents_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Base_Widget_Design_TabLayout +style Base_Widget_MaterialComponents_AutoCompleteTextView +style Base_Widget_MaterialComponents_CheckedTextView +style Base_Widget_MaterialComponents_Chip +style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +style Base_Widget_MaterialComponents_PopupMenu +style Base_Widget_MaterialComponents_PopupMenu_ContextMenu +style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Base_Widget_MaterialComponents_PopupMenu_Overflow +style Base_Widget_MaterialComponents_Slider +style Base_Widget_MaterialComponents_Snackbar +style Base_Widget_MaterialComponents_TextInputEditText +style Base_Widget_MaterialComponents_TextInputLayout +style Base_Widget_MaterialComponents_TextView +style CardView +style CardView_Dark +style CardView_Light +style EmptyTheme +style MaterialAlertDialog_MaterialComponents +style MaterialAlertDialog_MaterialComponents_Body_Text +style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +style MaterialAlertDialog_MaterialComponents_Title_Icon +style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Panel +style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +style MaterialAlertDialog_MaterialComponents_Title_Text +style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_MaterialComponents +style Platform_MaterialComponents_Dialog +style Platform_MaterialComponents_Light +style Platform_MaterialComponents_Light_Dialog +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style ShapeAppearanceOverlay +style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +style ShapeAppearanceOverlay_BottomRightCut +style ShapeAppearanceOverlay_Cut +style ShapeAppearanceOverlay_DifferentCornerSize +style ShapeAppearanceOverlay_MaterialComponents_BottomSheet +style ShapeAppearanceOverlay_MaterialComponents_Chip +style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +style ShapeAppearanceOverlay_TopLeftCut +style ShapeAppearanceOverlay_TopRightDifferentCornerSize +style ShapeAppearance_MaterialComponents +style ShapeAppearance_MaterialComponents_LargeComponent +style ShapeAppearance_MaterialComponents_MediumComponent +style ShapeAppearance_MaterialComponents_SmallComponent +style ShapeAppearance_MaterialComponents_Test +style ShapeAppearance_MaterialComponents_Tooltip +style TestStyleWithLineHeight +style TestStyleWithLineHeightAppearance +style TestStyleWithThemeLineHeightAttribute +style TestStyleWithoutLineHeight +style TestThemeWithLineHeight +style TestThemeWithLineHeightDisabled +style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +style Test_Theme_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar +style Test_Widget_MaterialComponents_MaterialCalendar_Day +style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +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 TextAppearance_Design_CollapsingToolbar_Expanded +style TextAppearance_Design_Counter +style TextAppearance_Design_Counter_Overflow +style TextAppearance_Design_Error +style TextAppearance_Design_HelperText +style TextAppearance_Design_Hint +style TextAppearance_Design_Placeholder +style TextAppearance_Design_Prefix +style TextAppearance_Design_Snackbar_Message +style TextAppearance_Design_Suffix +style TextAppearance_Design_Tab +style TextAppearance_MaterialComponents_Badge +style TextAppearance_MaterialComponents_Body1 +style TextAppearance_MaterialComponents_Body2 +style TextAppearance_MaterialComponents_Button +style TextAppearance_MaterialComponents_Caption +style TextAppearance_MaterialComponents_Chip +style TextAppearance_MaterialComponents_Headline1 +style TextAppearance_MaterialComponents_Headline2 +style TextAppearance_MaterialComponents_Headline3 +style TextAppearance_MaterialComponents_Headline4 +style TextAppearance_MaterialComponents_Headline5 +style TextAppearance_MaterialComponents_Headline6 +style TextAppearance_MaterialComponents_Overline +style TextAppearance_MaterialComponents_Subtitle1 +style TextAppearance_MaterialComponents_Subtitle2 +style TextAppearance_MaterialComponents_TimePicker_Title +style TextAppearance_MaterialComponents_Tooltip +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlayColorAccentRed +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style ThemeOverlay_Design_TextInputEditText +style ThemeOverlay_MaterialComponents +style ThemeOverlay_MaterialComponents_ActionBar +style ThemeOverlay_MaterialComponents_ActionBar_Primary +style ThemeOverlay_MaterialComponents_ActionBar_Surface +style ThemeOverlay_MaterialComponents_AutoCompleteTextView +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_BottomAppBar_Primary +style ThemeOverlay_MaterialComponents_BottomAppBar_Surface +style ThemeOverlay_MaterialComponents_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dark +style ThemeOverlay_MaterialComponents_Dark_ActionBar +style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Dialog +style ThemeOverlay_MaterialComponents_Dialog_Alert +style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_Light +style ThemeOverlay_MaterialComponents_Light_BottomSheetDialog +style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +style ThemeOverlay_MaterialComponents_MaterialAlertDialog +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +style ThemeOverlay_MaterialComponents_MaterialCalendar +style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +style ThemeOverlay_MaterialComponents_TextInputEditText +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style ThemeOverlay_MaterialComponents_TimePicker +style ThemeOverlay_MaterialComponents_TimePicker_Display +style ThemeOverlay_MaterialComponents_Toolbar_Primary +style ThemeOverlay_MaterialComponents_Toolbar_Surface +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Empty +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_Design +style Theme_Design_BottomSheetDialog +style Theme_Design_Light +style Theme_Design_Light_BottomSheetDialog +style Theme_Design_Light_NoActionBar +style Theme_Design_NoActionBar +style Theme_MaterialComponents +style Theme_MaterialComponents_BottomSheetDialog +style Theme_MaterialComponents_Bridge +style Theme_MaterialComponents_CompactMenu +style Theme_MaterialComponents_DayNight +style Theme_MaterialComponents_DayNight_BottomSheetDialog +style Theme_MaterialComponents_DayNight_Bridge +style Theme_MaterialComponents_DayNight_DarkActionBar +style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +style Theme_MaterialComponents_DayNight_Dialog +style Theme_MaterialComponents_DayNight_DialogWhenLarge +style Theme_MaterialComponents_DayNight_Dialog_Alert +style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +style Theme_MaterialComponents_DayNight_Dialog_Bridge +style Theme_MaterialComponents_DayNight_Dialog_FixedSize +style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_DayNight_Dialog_MinWidth +style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_DayNight_NoActionBar +style Theme_MaterialComponents_DayNight_NoActionBar_Bridge +style Theme_MaterialComponents_Dialog +style Theme_MaterialComponents_DialogWhenLarge +style Theme_MaterialComponents_Dialog_Alert +style Theme_MaterialComponents_Dialog_Alert_Bridge +style Theme_MaterialComponents_Dialog_Bridge +style Theme_MaterialComponents_Dialog_FixedSize +style Theme_MaterialComponents_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Dialog_MinWidth +style Theme_MaterialComponents_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light +style Theme_MaterialComponents_Light_BarSize +style Theme_MaterialComponents_Light_BottomSheetDialog +style Theme_MaterialComponents_Light_Bridge +style Theme_MaterialComponents_Light_DarkActionBar +style Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Theme_MaterialComponents_Light_Dialog +style Theme_MaterialComponents_Light_DialogWhenLarge +style Theme_MaterialComponents_Light_Dialog_Alert +style Theme_MaterialComponents_Light_Dialog_Alert_Bridge +style Theme_MaterialComponents_Light_Dialog_Bridge +style Theme_MaterialComponents_Light_Dialog_FixedSize +style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +style Theme_MaterialComponents_Light_Dialog_MinWidth +style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +style Theme_MaterialComponents_Light_LargeTouch +style Theme_MaterialComponents_Light_NoActionBar +style Theme_MaterialComponents_Light_NoActionBar_Bridge +style Theme_MaterialComponents_NoActionBar +style Theme_MaterialComponents_NoActionBar_Bridge +style TransparentDialog +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Design_AppBarLayout +style Widget_Design_BottomNavigationView +style Widget_Design_BottomSheet_Modal +style Widget_Design_CollapsingToolbar +style Widget_Design_FloatingActionButton +style Widget_Design_NavigationView +style Widget_Design_ScrimInsetsFrameLayout +style Widget_Design_Snackbar +style Widget_Design_TabLayout +style Widget_Design_TextInputEditText +style Widget_Design_TextInputLayout +style Widget_MaterialComponents_ActionBar_Primary +style Widget_MaterialComponents_ActionBar_PrimarySurface +style Widget_MaterialComponents_ActionBar_Solid +style Widget_MaterialComponents_ActionBar_Surface +style Widget_MaterialComponents_AppBarLayout_Primary +style Widget_MaterialComponents_AppBarLayout_PrimarySurface +style Widget_MaterialComponents_AppBarLayout_Surface +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox +style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +style Widget_MaterialComponents_Badge +style Widget_MaterialComponents_BottomAppBar +style Widget_MaterialComponents_BottomAppBar_Colored +style Widget_MaterialComponents_BottomAppBar_PrimarySurface +style Widget_MaterialComponents_BottomNavigationView +style Widget_MaterialComponents_BottomNavigationView_Colored +style Widget_MaterialComponents_BottomNavigationView_PrimarySurface +style Widget_MaterialComponents_BottomSheet +style Widget_MaterialComponents_BottomSheet_Modal +style Widget_MaterialComponents_Button +style Widget_MaterialComponents_Button_Icon +style Widget_MaterialComponents_Button_OutlinedButton +style Widget_MaterialComponents_Button_OutlinedButton_Icon +style Widget_MaterialComponents_Button_TextButton +style Widget_MaterialComponents_Button_TextButton_Dialog +style Widget_MaterialComponents_Button_TextButton_Dialog_Flush +style Widget_MaterialComponents_Button_TextButton_Dialog_Icon +style Widget_MaterialComponents_Button_TextButton_Icon +style Widget_MaterialComponents_Button_TextButton_Snackbar +style Widget_MaterialComponents_Button_UnelevatedButton +style Widget_MaterialComponents_Button_UnelevatedButton_Icon +style Widget_MaterialComponents_CardView +style Widget_MaterialComponents_CheckedTextView +style Widget_MaterialComponents_ChipGroup +style Widget_MaterialComponents_Chip_Action +style Widget_MaterialComponents_Chip_Choice +style Widget_MaterialComponents_Chip_Entry +style Widget_MaterialComponents_Chip_Filter +style Widget_MaterialComponents_CircularProgressIndicator +style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall +style Widget_MaterialComponents_CircularProgressIndicator_Medium +style Widget_MaterialComponents_CircularProgressIndicator_Small +style Widget_MaterialComponents_CollapsingToolbar +style Widget_MaterialComponents_CompoundButton_CheckBox +style Widget_MaterialComponents_CompoundButton_RadioButton +style Widget_MaterialComponents_CompoundButton_Switch +style Widget_MaterialComponents_ExtendedFloatingActionButton +style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +style Widget_MaterialComponents_FloatingActionButton +style Widget_MaterialComponents_Light_ActionBar_Solid +style Widget_MaterialComponents_LinearProgressIndicator +style Widget_MaterialComponents_MaterialButtonToggleGroup +style Widget_MaterialComponents_MaterialCalendar +style Widget_MaterialComponents_MaterialCalendar_Day +style Widget_MaterialComponents_MaterialCalendar_DayTextView +style Widget_MaterialComponents_MaterialCalendar_Day_Invalid +style Widget_MaterialComponents_MaterialCalendar_Day_Selected +style Widget_MaterialComponents_MaterialCalendar_Day_Today +style Widget_MaterialComponents_MaterialCalendar_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +style Widget_MaterialComponents_MaterialCalendar_HeaderDivider +style Widget_MaterialComponents_MaterialCalendar_HeaderLayout +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection +style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +style Widget_MaterialComponents_MaterialCalendar_HeaderTitle +style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +style Widget_MaterialComponents_MaterialCalendar_Item +style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +style Widget_MaterialComponents_MaterialCalendar_MonthTextView +style Widget_MaterialComponents_MaterialCalendar_Year +style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +style Widget_MaterialComponents_MaterialCalendar_Year_Selected +style Widget_MaterialComponents_MaterialCalendar_Year_Today +style Widget_MaterialComponents_NavigationView +style Widget_MaterialComponents_PopupMenu +style Widget_MaterialComponents_PopupMenu_ContextMenu +style Widget_MaterialComponents_PopupMenu_ListPopupWindow +style Widget_MaterialComponents_PopupMenu_Overflow +style Widget_MaterialComponents_ProgressIndicator +style Widget_MaterialComponents_ShapeableImageView +style Widget_MaterialComponents_Slider +style Widget_MaterialComponents_Snackbar +style Widget_MaterialComponents_Snackbar_FullWidth +style Widget_MaterialComponents_Snackbar_TextView +style Widget_MaterialComponents_TabLayout +style Widget_MaterialComponents_TabLayout_Colored +style Widget_MaterialComponents_TabLayout_PrimarySurface +style Widget_MaterialComponents_TextInputEditText_FilledBox +style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +style Widget_MaterialComponents_TextInputEditText_OutlinedBox +style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +style Widget_MaterialComponents_TextView +style Widget_MaterialComponents_TimePicker +style Widget_MaterialComponents_TimePicker_Button +style Widget_MaterialComponents_TimePicker_Clock +style Widget_MaterialComponents_TimePicker_Display +style Widget_MaterialComponents_TimePicker_Display_TextInputEditText +style Widget_MaterialComponents_TimePicker_ImageButton +style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance +style Widget_MaterialComponents_Toolbar +style Widget_MaterialComponents_Toolbar_Primary +style Widget_MaterialComponents_Toolbar_PrimarySurface +style Widget_MaterialComponents_Toolbar_Surface +style Widget_MaterialComponents_Tooltip +style Widget_Support_CoordinatorLayout +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppBarLayout android_background android_keyboardNavigationCluster android_touchscreenBlocksFocus elevation expanded liftOnScroll liftOnScrollTargetViewId statusBarForeground +styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted +styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset +styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness +styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets +styleable BottomNavigationView backgroundTint elevation itemBackground itemHorizontalTranslationEnabled itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable BottomSheetBehavior_Layout android_elevation backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored shapeAppearance shapeAppearanceOverlay +styleable ButtonBarLayout allowStacking +styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop +styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance android_textColor android_textSize checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding +styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection +styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize +styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor +styleable ClockHandView clockHandColor materialCircleRadius selectorSize +styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleEnabled toolbarId +styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable Constraint android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate visibilityMode +styleable ConstraintLayout_Layout android_elevation android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_padding android_paddingBottom android_paddingEnd android_paddingLeft android_paddingRight android_paddingStart android_paddingTop android_visibility barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraintSet constraint_referenced_ids flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel +styleable ConstraintLayout_placeholder content placeholder_emptyVisibility +styleable ConstraintSet android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_pivotX android_pivotY android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customStringValue +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec +styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink +styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding +styleable FloatingActionButton_Behavior_Layout behavior_autoHide +styleable FlowLayout itemSpacing lineSpacing +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 ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding +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 ImageFilterView altSrc brightness contrast crossfade overlay round roundPercent saturation warmth +styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets +styleable KeyAttribute android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate +styleable KeyCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod waveShape waveVariesBy +styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing +styleable KeyTimeCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod waveShape +styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack +styleable Layout android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_orientation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop maxHeight maxWidth minHeight minWidth +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop +styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle +styleable MaterialAutoCompleteTextView android_inputType +styleable MaterialButton android_background android_checkable android_insetBottom android_insetLeft android_insetRight android_insetTop backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection +styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle +styleable MaterialCalendarItem android_insetBottom android_insetLeft android_insetRight android_insetTop itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor +styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth +styleable MaterialCheckBox buttonTint useMaterialThemeColors +styleable MaterialRadioButton buttonTint useMaterialThemeColors +styleable MaterialShape shapeAppearance shapeAppearanceOverlay +styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight +styleable MaterialTextView android_lineHeight android_textAppearance lineHeight +styleable MaterialTimePicker clockIcon keyboardIcon +styleable MaterialToolbar navigationIconTint +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel +styleable Motion animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc transitionEasing +styleable MotionHelper onHide onShow +styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths +styleable MotionScene defaultDuration layoutDuringTransition +styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode +styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay +styleable OnClick clickAction targetId +styleable OnSwipe dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp touchAnchorId touchAnchorSide touchRegionId +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable PropertySet android_alpha android_visibility layout_constraintTag motionProgress visibilityMode +styleable RadialViewGroup materialCircleRadius +styleable RangeSlider minSeparation values +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable ScrimInsetsFrameLayout insetForeground +styleable ScrollingViewBehavior_Layout behavior_overlapTop +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight +styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth +styleable Slider android_enabled android_stepSize android_value android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight +styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle +styleable SnackbarLayout actionTextColorAlpha android_maxWidth animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable State android_id constraints +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable StateSet defaultState +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable SwitchMaterial useMaterialThemeColors +styleable TabItem android_icon android_layout android_text +styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable TextInputEditText textInputLayoutFocusedRectEnabled +styleable TextInputLayout android_enabled android_hint android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor +styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable Tooltip android_layout_margin android_minHeight android_minWidth android_padding android_text android_textAppearance backgroundTint +styleable Transform android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ +styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags +styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewPager2 android_orientation +styleable ViewStubCompat android_id android_inflatedId android_layout +xml standalone_badge +xml standalone_badge_gravity_bottom_end +xml standalone_badge_gravity_bottom_start +xml standalone_badge_gravity_top_start +xml standalone_badge_offset diff --git a/common/build/intermediates/symbols/debug/R.txt b/common/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000..57c1bda --- /dev/null +++ b/common/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,4584 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int anim design_bottom_sheet_slide_in 0x7f010019 +int anim design_bottom_sheet_slide_out 0x7f01001a +int anim design_snackbar_in 0x7f01001b +int anim design_snackbar_out 0x7f01001c +int anim mtrl_bottom_sheet_slide_in 0x7f01001d +int anim mtrl_bottom_sheet_slide_out 0x7f01001e +int anim mtrl_card_lowers_interpolator 0x7f01001f +int animator design_appbar_state_list_animator 0x7f020001 +int animator design_fab_hide_motion_spec 0x7f020002 +int animator design_fab_show_motion_spec 0x7f020003 +int animator linear_indeterminate_line1_head_interpolator 0x7f020004 +int animator linear_indeterminate_line1_tail_interpolator 0x7f020005 +int animator linear_indeterminate_line2_head_interpolator 0x7f020006 +int animator linear_indeterminate_line2_tail_interpolator 0x7f020007 +int animator mtrl_btn_state_list_anim 0x7f020008 +int animator mtrl_btn_unelevated_state_list_anim 0x7f020009 +int animator mtrl_card_state_list_anim 0x7f02000a +int animator mtrl_chip_state_list_anim 0x7f02000b +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f02000c +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f02000d +int animator mtrl_extended_fab_hide_motion_spec 0x7f02000e +int animator mtrl_extended_fab_show_motion_spec 0x7f02000f +int animator mtrl_extended_fab_state_list_animator 0x7f020010 +int animator mtrl_fab_hide_motion_spec 0x7f020011 +int animator mtrl_fab_show_motion_spec 0x7f020012 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020013 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020014 +int attr actionBarDivider 0x7f040001 +int attr actionBarItemBackground 0x7f040002 +int attr actionBarPopupTheme 0x7f040003 +int attr actionBarSize 0x7f040004 +int attr actionBarSplitStyle 0x7f040005 +int attr actionBarStyle 0x7f040006 +int attr actionBarTabBarStyle 0x7f040007 +int attr actionBarTabStyle 0x7f040008 +int attr actionBarTabTextStyle 0x7f040009 +int attr actionBarTheme 0x7f04000a +int attr actionBarWidgetTheme 0x7f04000b +int attr actionButtonStyle 0x7f04000c +int attr actionDropDownStyle 0x7f04000d +int attr actionLayout 0x7f04000e +int attr actionMenuTextAppearance 0x7f04000f +int attr actionMenuTextColor 0x7f040010 +int attr actionModeBackground 0x7f040011 +int attr actionModeCloseButtonStyle 0x7f040012 +int attr actionModeCloseDrawable 0x7f040013 +int attr actionModeCopyDrawable 0x7f040014 +int attr actionModeCutDrawable 0x7f040015 +int attr actionModeFindDrawable 0x7f040016 +int attr actionModePasteDrawable 0x7f040017 +int attr actionModePopupWindowStyle 0x7f040018 +int attr actionModeSelectAllDrawable 0x7f040019 +int attr actionModeShareDrawable 0x7f04001a +int attr actionModeSplitBackground 0x7f04001b +int attr actionModeStyle 0x7f04001c +int attr actionModeWebSearchDrawable 0x7f04001d +int attr actionOverflowButtonStyle 0x7f04001e +int attr actionOverflowMenuStyle 0x7f04001f +int attr actionProviderClass 0x7f040020 +int attr actionTextColorAlpha 0x7f040021 +int attr actionViewClass 0x7f040022 +int attr activityChooserViewStyle 0x7f040023 +int attr alertDialogButtonGroupStyle 0x7f040024 +int attr alertDialogCenterButtons 0x7f040025 +int attr alertDialogStyle 0x7f040026 +int attr alertDialogTheme 0x7f040027 +int attr allowStacking 0x7f040028 +int attr alpha 0x7f040029 +int attr alphabeticModifiers 0x7f04002a +int attr altSrc 0x7f04002b +int attr animate_relativeTo 0x7f04002c +int attr animationMode 0x7f04002d +int attr appBarLayoutStyle 0x7f04002e +int attr applyMotionScene 0x7f04002f +int attr arcMode 0x7f040030 +int attr arrowHeadLength 0x7f040031 +int attr arrowShaftLength 0x7f040032 +int attr attributeName 0x7f040033 +int attr autoCompleteTextViewStyle 0x7f040034 +int attr autoSizeMaxTextSize 0x7f040035 +int attr autoSizeMinTextSize 0x7f040036 +int attr autoSizePresetSizes 0x7f040037 +int attr autoSizeStepGranularity 0x7f040038 +int attr autoSizeTextType 0x7f040039 +int attr autoTransition 0x7f04003a +int attr background 0x7f04003b +int attr backgroundColor 0x7f04003c +int attr backgroundInsetBottom 0x7f04003d +int attr backgroundInsetEnd 0x7f04003e +int attr backgroundInsetStart 0x7f04003f +int attr backgroundInsetTop 0x7f040040 +int attr backgroundOverlayColorAlpha 0x7f040041 +int attr backgroundSplit 0x7f040042 +int attr backgroundStacked 0x7f040043 +int attr backgroundTint 0x7f040044 +int attr backgroundTintMode 0x7f040045 +int attr badgeGravity 0x7f040046 +int attr badgeStyle 0x7f040047 +int attr badgeTextColor 0x7f040048 +int attr barLength 0x7f040049 +int attr barrierAllowsGoneWidgets 0x7f04004a +int attr barrierDirection 0x7f04004b +int attr barrierMargin 0x7f04004c +int attr behavior_autoHide 0x7f04004d +int attr behavior_autoShrink 0x7f04004e +int attr behavior_draggable 0x7f04004f +int attr behavior_expandedOffset 0x7f040050 +int attr behavior_fitToContents 0x7f040051 +int attr behavior_halfExpandedRatio 0x7f040052 +int attr behavior_hideable 0x7f040053 +int attr behavior_overlapTop 0x7f040054 +int attr behavior_peekHeight 0x7f040055 +int attr behavior_saveFlags 0x7f040056 +int attr behavior_skipCollapsed 0x7f040057 +int attr borderWidth 0x7f040058 +int attr borderlessButtonStyle 0x7f040059 +int attr bottomAppBarStyle 0x7f04005a +int attr bottomNavigationStyle 0x7f04005b +int attr bottomSheetDialogTheme 0x7f04005c +int attr bottomSheetStyle 0x7f04005d +int attr boxBackgroundColor 0x7f04005e +int attr boxBackgroundMode 0x7f04005f +int attr boxCollapsedPaddingTop 0x7f040060 +int attr boxCornerRadiusBottomEnd 0x7f040061 +int attr boxCornerRadiusBottomStart 0x7f040062 +int attr boxCornerRadiusTopEnd 0x7f040063 +int attr boxCornerRadiusTopStart 0x7f040064 +int attr boxStrokeColor 0x7f040065 +int attr boxStrokeErrorColor 0x7f040066 +int attr boxStrokeWidth 0x7f040067 +int attr boxStrokeWidthFocused 0x7f040068 +int attr brightness 0x7f040069 +int attr buttonBarButtonStyle 0x7f04006a +int attr buttonBarNegativeButtonStyle 0x7f04006b +int attr buttonBarNeutralButtonStyle 0x7f04006c +int attr buttonBarPositiveButtonStyle 0x7f04006d +int attr buttonBarStyle 0x7f04006e +int attr buttonCompat 0x7f04006f +int attr buttonGravity 0x7f040070 +int attr buttonIconDimen 0x7f040071 +int attr buttonPanelSideLayout 0x7f040072 +int attr buttonStyle 0x7f040073 +int attr buttonStyleSmall 0x7f040074 +int attr buttonTint 0x7f040075 +int attr buttonTintMode 0x7f040076 +int attr cardBackgroundColor 0x7f040077 +int attr cardCornerRadius 0x7f040078 +int attr cardElevation 0x7f040079 +int attr cardForegroundColor 0x7f04007a +int attr cardMaxElevation 0x7f04007b +int attr cardPreventCornerOverlap 0x7f04007c +int attr cardUseCompatPadding 0x7f04007d +int attr cardViewStyle 0x7f04007e +int attr chainUseRtl 0x7f04007f +int attr checkboxStyle 0x7f040080 +int attr checkedButton 0x7f040081 +int attr checkedChip 0x7f040082 +int attr checkedIcon 0x7f040083 +int attr checkedIconEnabled 0x7f040084 +int attr checkedIconMargin 0x7f040085 +int attr checkedIconSize 0x7f040086 +int attr checkedIconTint 0x7f040087 +int attr checkedIconVisible 0x7f040088 +int attr checkedTextViewStyle 0x7f040089 +int attr chipBackgroundColor 0x7f04008a +int attr chipCornerRadius 0x7f04008b +int attr chipEndPadding 0x7f04008c +int attr chipGroupStyle 0x7f04008d +int attr chipIcon 0x7f04008e +int attr chipIconEnabled 0x7f04008f +int attr chipIconSize 0x7f040090 +int attr chipIconTint 0x7f040091 +int attr chipIconVisible 0x7f040092 +int attr chipMinHeight 0x7f040093 +int attr chipMinTouchTargetSize 0x7f040094 +int attr chipSpacing 0x7f040095 +int attr chipSpacingHorizontal 0x7f040096 +int attr chipSpacingVertical 0x7f040097 +int attr chipStandaloneStyle 0x7f040098 +int attr chipStartPadding 0x7f040099 +int attr chipStrokeColor 0x7f04009a +int attr chipStrokeWidth 0x7f04009b +int attr chipStyle 0x7f04009c +int attr chipSurfaceColor 0x7f04009d +int attr circleRadius 0x7f04009e +int attr circularProgressIndicatorStyle 0x7f04009f +int attr clickAction 0x7f0400a0 +int attr clockFaceBackgroundColor 0x7f0400a1 +int attr clockHandColor 0x7f0400a2 +int attr clockIcon 0x7f0400a3 +int attr clockNumberTextColor 0x7f0400a4 +int attr closeIcon 0x7f0400a5 +int attr closeIconEnabled 0x7f0400a6 +int attr closeIconEndPadding 0x7f0400a7 +int attr closeIconSize 0x7f0400a8 +int attr closeIconStartPadding 0x7f0400a9 +int attr closeIconTint 0x7f0400aa +int attr closeIconVisible 0x7f0400ab +int attr closeItemLayout 0x7f0400ac +int attr collapseContentDescription 0x7f0400ad +int attr collapseIcon 0x7f0400ae +int attr collapsedSize 0x7f0400af +int attr collapsedTitleGravity 0x7f0400b0 +int attr collapsedTitleTextAppearance 0x7f0400b1 +int attr collapsingToolbarLayoutStyle 0x7f0400b2 +int attr color 0x7f0400b3 +int attr colorAccent 0x7f0400b4 +int attr colorBackgroundFloating 0x7f0400b5 +int attr colorButtonNormal 0x7f0400b6 +int attr colorControlActivated 0x7f0400b7 +int attr colorControlHighlight 0x7f0400b8 +int attr colorControlNormal 0x7f0400b9 +int attr colorError 0x7f0400ba +int attr colorOnBackground 0x7f0400bb +int attr colorOnError 0x7f0400bc +int attr colorOnPrimary 0x7f0400bd +int attr colorOnPrimarySurface 0x7f0400be +int attr colorOnSecondary 0x7f0400bf +int attr colorOnSurface 0x7f0400c0 +int attr colorPrimary 0x7f0400c1 +int attr colorPrimaryDark 0x7f0400c2 +int attr colorPrimarySurface 0x7f0400c3 +int attr colorPrimaryVariant 0x7f0400c4 +int attr colorSecondary 0x7f0400c5 +int attr colorSecondaryVariant 0x7f0400c6 +int attr colorSurface 0x7f0400c7 +int attr colorSwitchThumbNormal 0x7f0400c8 +int attr commitIcon 0x7f0400c9 +int attr constraintSet 0x7f0400ca +int attr constraintSetEnd 0x7f0400cb +int attr constraintSetStart 0x7f0400cc +int attr constraint_referenced_ids 0x7f0400cd +int attr constraints 0x7f0400ce +int attr content 0x7f0400cf +int attr contentDescription 0x7f0400d0 +int attr contentInsetEnd 0x7f0400d1 +int attr contentInsetEndWithActions 0x7f0400d2 +int attr contentInsetLeft 0x7f0400d3 +int attr contentInsetRight 0x7f0400d4 +int attr contentInsetStart 0x7f0400d5 +int attr contentInsetStartWithNavigation 0x7f0400d6 +int attr contentPadding 0x7f0400d7 +int attr contentPaddingBottom 0x7f0400d8 +int attr contentPaddingEnd 0x7f0400d9 +int attr contentPaddingLeft 0x7f0400da +int attr contentPaddingRight 0x7f0400db +int attr contentPaddingStart 0x7f0400dc +int attr contentPaddingTop 0x7f0400dd +int attr contentScrim 0x7f0400de +int attr contrast 0x7f0400df +int attr controlBackground 0x7f0400e0 +int attr coordinatorLayoutStyle 0x7f0400e1 +int attr cornerFamily 0x7f0400e2 +int attr cornerFamilyBottomLeft 0x7f0400e3 +int attr cornerFamilyBottomRight 0x7f0400e4 +int attr cornerFamilyTopLeft 0x7f0400e5 +int attr cornerFamilyTopRight 0x7f0400e6 +int attr cornerRadius 0x7f0400e7 +int attr cornerSize 0x7f0400e8 +int attr cornerSizeBottomLeft 0x7f0400e9 +int attr cornerSizeBottomRight 0x7f0400ea +int attr cornerSizeTopLeft 0x7f0400eb +int attr cornerSizeTopRight 0x7f0400ec +int attr counterEnabled 0x7f0400ed +int attr counterMaxLength 0x7f0400ee +int attr counterOverflowTextAppearance 0x7f0400ef +int attr counterOverflowTextColor 0x7f0400f0 +int attr counterTextAppearance 0x7f0400f1 +int attr counterTextColor 0x7f0400f2 +int attr crossfade 0x7f0400f3 +int attr currentState 0x7f0400f4 +int attr curveFit 0x7f0400f5 +int attr customBoolean 0x7f0400f6 +int attr customColorDrawableValue 0x7f0400f7 +int attr customColorValue 0x7f0400f8 +int attr customDimension 0x7f0400f9 +int attr customFloatValue 0x7f0400fa +int attr customIntegerValue 0x7f0400fb +int attr customNavigationLayout 0x7f0400fc +int attr customPixelDimension 0x7f0400fd +int attr customStringValue 0x7f0400fe +int attr dayInvalidStyle 0x7f0400ff +int attr daySelectedStyle 0x7f040100 +int attr dayStyle 0x7f040101 +int attr dayTodayStyle 0x7f040102 +int attr defaultDuration 0x7f040103 +int attr defaultQueryHint 0x7f040104 +int attr defaultState 0x7f040105 +int attr deltaPolarAngle 0x7f040106 +int attr deltaPolarRadius 0x7f040107 +int attr deriveConstraintsFrom 0x7f040108 +int attr dialogCornerRadius 0x7f040109 +int attr dialogPreferredPadding 0x7f04010a +int attr dialogTheme 0x7f04010b +int attr displayOptions 0x7f04010c +int attr divider 0x7f04010d +int attr dividerHorizontal 0x7f04010e +int attr dividerPadding 0x7f04010f +int attr dividerVertical 0x7f040110 +int attr dragDirection 0x7f040111 +int attr dragScale 0x7f040112 +int attr dragThreshold 0x7f040113 +int attr drawPath 0x7f040114 +int attr drawableBottomCompat 0x7f040115 +int attr drawableEndCompat 0x7f040116 +int attr drawableLeftCompat 0x7f040117 +int attr drawableRightCompat 0x7f040118 +int attr drawableSize 0x7f040119 +int attr drawableStartCompat 0x7f04011a +int attr drawableTint 0x7f04011b +int attr drawableTintMode 0x7f04011c +int attr drawableTopCompat 0x7f04011d +int attr drawerArrowStyle 0x7f04011e +int attr dropDownListViewStyle 0x7f04011f +int attr dropdownListPreferredItemHeight 0x7f040120 +int attr duration 0x7f040121 +int attr editTextBackground 0x7f040122 +int attr editTextColor 0x7f040123 +int attr editTextStyle 0x7f040124 +int attr elevation 0x7f040125 +int attr elevationOverlayColor 0x7f040126 +int attr elevationOverlayEnabled 0x7f040127 +int attr endIconCheckable 0x7f040128 +int attr endIconContentDescription 0x7f040129 +int attr endIconDrawable 0x7f04012a +int attr endIconMode 0x7f04012b +int attr endIconTint 0x7f04012c +int attr endIconTintMode 0x7f04012d +int attr enforceMaterialTheme 0x7f04012e +int attr enforceTextAppearance 0x7f04012f +int attr ensureMinTouchTargetSize 0x7f040130 +int attr errorContentDescription 0x7f040131 +int attr errorEnabled 0x7f040132 +int attr errorIconDrawable 0x7f040133 +int attr errorIconTint 0x7f040134 +int attr errorIconTintMode 0x7f040135 +int attr errorTextAppearance 0x7f040136 +int attr errorTextColor 0x7f040137 +int attr expandActivityOverflowButtonDrawable 0x7f040138 +int attr expanded 0x7f040139 +int attr expandedHintEnabled 0x7f04013a +int attr expandedTitleGravity 0x7f04013b +int attr expandedTitleMargin 0x7f04013c +int attr expandedTitleMarginBottom 0x7f04013d +int attr expandedTitleMarginEnd 0x7f04013e +int attr expandedTitleMarginStart 0x7f04013f +int attr expandedTitleMarginTop 0x7f040140 +int attr expandedTitleTextAppearance 0x7f040141 +int attr extendMotionSpec 0x7f040142 +int attr extendedFloatingActionButtonStyle 0x7f040143 +int attr fabAlignmentMode 0x7f040144 +int attr fabAnimationMode 0x7f040145 +int attr fabCradleMargin 0x7f040146 +int attr fabCradleRoundedCornerRadius 0x7f040147 +int attr fabCradleVerticalOffset 0x7f040148 +int attr fabCustomSize 0x7f040149 +int attr fabSize 0x7f04014a +int attr fastScrollEnabled 0x7f04014b +int attr fastScrollHorizontalThumbDrawable 0x7f04014c +int attr fastScrollHorizontalTrackDrawable 0x7f04014d +int attr fastScrollVerticalThumbDrawable 0x7f04014e +int attr fastScrollVerticalTrackDrawable 0x7f04014f +int attr firstBaselineToTopHeight 0x7f040150 +int attr floatingActionButtonStyle 0x7f040151 +int attr flow_firstHorizontalBias 0x7f040152 +int attr flow_firstHorizontalStyle 0x7f040153 +int attr flow_firstVerticalBias 0x7f040154 +int attr flow_firstVerticalStyle 0x7f040155 +int attr flow_horizontalAlign 0x7f040156 +int attr flow_horizontalBias 0x7f040157 +int attr flow_horizontalGap 0x7f040158 +int attr flow_horizontalStyle 0x7f040159 +int attr flow_lastHorizontalBias 0x7f04015a +int attr flow_lastHorizontalStyle 0x7f04015b +int attr flow_lastVerticalBias 0x7f04015c +int attr flow_lastVerticalStyle 0x7f04015d +int attr flow_maxElementsWrap 0x7f04015e +int attr flow_padding 0x7f04015f +int attr flow_verticalAlign 0x7f040160 +int attr flow_verticalBias 0x7f040161 +int attr flow_verticalGap 0x7f040162 +int attr flow_verticalStyle 0x7f040163 +int attr flow_wrapMode 0x7f040164 +int attr font 0x7f040165 +int attr fontFamily 0x7f040166 +int attr fontProviderAuthority 0x7f040167 +int attr fontProviderCerts 0x7f040168 +int attr fontProviderFetchStrategy 0x7f040169 +int attr fontProviderFetchTimeout 0x7f04016a +int attr fontProviderPackage 0x7f04016b +int attr fontProviderQuery 0x7f04016c +int attr fontStyle 0x7f04016d +int attr fontVariationSettings 0x7f04016e +int attr fontWeight 0x7f04016f +int attr foregroundInsidePadding 0x7f040170 +int attr framePosition 0x7f040171 +int attr gapBetweenBars 0x7f040172 +int attr gestureInsetBottomIgnored 0x7f040173 +int attr goIcon 0x7f040174 +int attr haloColor 0x7f040175 +int attr haloRadius 0x7f040176 +int attr headerLayout 0x7f040177 +int attr height 0x7f040178 +int attr helperText 0x7f040179 +int attr helperTextEnabled 0x7f04017a +int attr helperTextTextAppearance 0x7f04017b +int attr helperTextTextColor 0x7f04017c +int attr hideAnimationBehavior 0x7f04017d +int attr hideMotionSpec 0x7f04017e +int attr hideOnContentScroll 0x7f04017f +int attr hideOnScroll 0x7f040180 +int attr hintAnimationEnabled 0x7f040181 +int attr hintEnabled 0x7f040182 +int attr hintTextAppearance 0x7f040183 +int attr hintTextColor 0x7f040184 +int attr homeAsUpIndicator 0x7f040185 +int attr homeLayout 0x7f040186 +int attr horizontalOffset 0x7f040187 +int attr hoveredFocusedTranslationZ 0x7f040188 +int attr icon 0x7f040189 +int attr iconEndPadding 0x7f04018a +int attr iconGravity 0x7f04018b +int attr iconPadding 0x7f04018c +int attr iconSize 0x7f04018d +int attr iconStartPadding 0x7f04018e +int attr iconTint 0x7f04018f +int attr iconTintMode 0x7f040190 +int attr iconifiedByDefault 0x7f040191 +int attr imageButtonStyle 0x7f040192 +int attr indeterminateAnimationType 0x7f040193 +int attr indeterminateProgressStyle 0x7f040194 +int attr indicatorColor 0x7f040195 +int attr indicatorDirectionCircular 0x7f040196 +int attr indicatorDirectionLinear 0x7f040197 +int attr indicatorInset 0x7f040198 +int attr indicatorSize 0x7f040199 +int attr initialActivityCount 0x7f04019a +int attr insetForeground 0x7f04019b +int attr isLightTheme 0x7f04019c +int attr isMaterialTheme 0x7f04019d +int attr itemBackground 0x7f04019e +int attr itemFillColor 0x7f04019f +int attr itemHorizontalPadding 0x7f0401a0 +int attr itemHorizontalTranslationEnabled 0x7f0401a1 +int attr itemIconPadding 0x7f0401a2 +int attr itemIconSize 0x7f0401a3 +int attr itemIconTint 0x7f0401a4 +int attr itemMaxLines 0x7f0401a5 +int attr itemPadding 0x7f0401a6 +int attr itemRippleColor 0x7f0401a7 +int attr itemShapeAppearance 0x7f0401a8 +int attr itemShapeAppearanceOverlay 0x7f0401a9 +int attr itemShapeFillColor 0x7f0401aa +int attr itemShapeInsetBottom 0x7f0401ab +int attr itemShapeInsetEnd 0x7f0401ac +int attr itemShapeInsetStart 0x7f0401ad +int attr itemShapeInsetTop 0x7f0401ae +int attr itemSpacing 0x7f0401af +int attr itemStrokeColor 0x7f0401b0 +int attr itemStrokeWidth 0x7f0401b1 +int attr itemTextAppearance 0x7f0401b2 +int attr itemTextAppearanceActive 0x7f0401b3 +int attr itemTextAppearanceInactive 0x7f0401b4 +int attr itemTextColor 0x7f0401b5 +int attr keyPositionType 0x7f0401b6 +int attr keyboardIcon 0x7f0401b7 +int attr keylines 0x7f0401b8 +int attr labelBehavior 0x7f0401b9 +int attr labelStyle 0x7f0401ba +int attr labelVisibilityMode 0x7f0401bb +int attr lastBaselineToBottomHeight 0x7f0401bc +int attr layout 0x7f0401bd +int attr layoutDescription 0x7f0401be +int attr layoutDuringTransition 0x7f0401bf +int attr layoutManager 0x7f0401c0 +int attr layout_anchor 0x7f0401c1 +int attr layout_anchorGravity 0x7f0401c2 +int attr layout_behavior 0x7f0401c3 +int attr layout_collapseMode 0x7f0401c4 +int attr layout_collapseParallaxMultiplier 0x7f0401c5 +int attr layout_constrainedHeight 0x7f0401c6 +int attr layout_constrainedWidth 0x7f0401c7 +int attr layout_constraintBaseline_creator 0x7f0401c8 +int attr layout_constraintBaseline_toBaselineOf 0x7f0401c9 +int attr layout_constraintBottom_creator 0x7f0401ca +int attr layout_constraintBottom_toBottomOf 0x7f0401cb +int attr layout_constraintBottom_toTopOf 0x7f0401cc +int attr layout_constraintCircle 0x7f0401cd +int attr layout_constraintCircleAngle 0x7f0401ce +int attr layout_constraintCircleRadius 0x7f0401cf +int attr layout_constraintDimensionRatio 0x7f0401d0 +int attr layout_constraintEnd_toEndOf 0x7f0401d1 +int attr layout_constraintEnd_toStartOf 0x7f0401d2 +int attr layout_constraintGuide_begin 0x7f0401d3 +int attr layout_constraintGuide_end 0x7f0401d4 +int attr layout_constraintGuide_percent 0x7f0401d5 +int attr layout_constraintHeight_default 0x7f0401d6 +int attr layout_constraintHeight_max 0x7f0401d7 +int attr layout_constraintHeight_min 0x7f0401d8 +int attr layout_constraintHeight_percent 0x7f0401d9 +int attr layout_constraintHorizontal_bias 0x7f0401da +int attr layout_constraintHorizontal_chainStyle 0x7f0401db +int attr layout_constraintHorizontal_weight 0x7f0401dc +int attr layout_constraintLeft_creator 0x7f0401dd +int attr layout_constraintLeft_toLeftOf 0x7f0401de +int attr layout_constraintLeft_toRightOf 0x7f0401df +int attr layout_constraintRight_creator 0x7f0401e0 +int attr layout_constraintRight_toLeftOf 0x7f0401e1 +int attr layout_constraintRight_toRightOf 0x7f0401e2 +int attr layout_constraintStart_toEndOf 0x7f0401e3 +int attr layout_constraintStart_toStartOf 0x7f0401e4 +int attr layout_constraintTag 0x7f0401e5 +int attr layout_constraintTop_creator 0x7f0401e6 +int attr layout_constraintTop_toBottomOf 0x7f0401e7 +int attr layout_constraintTop_toTopOf 0x7f0401e8 +int attr layout_constraintVertical_bias 0x7f0401e9 +int attr layout_constraintVertical_chainStyle 0x7f0401ea +int attr layout_constraintVertical_weight 0x7f0401eb +int attr layout_constraintWidth_default 0x7f0401ec +int attr layout_constraintWidth_max 0x7f0401ed +int attr layout_constraintWidth_min 0x7f0401ee +int attr layout_constraintWidth_percent 0x7f0401ef +int attr layout_dodgeInsetEdges 0x7f0401f0 +int attr layout_editor_absoluteX 0x7f0401f1 +int attr layout_editor_absoluteY 0x7f0401f2 +int attr layout_goneMarginBottom 0x7f0401f3 +int attr layout_goneMarginEnd 0x7f0401f4 +int attr layout_goneMarginLeft 0x7f0401f5 +int attr layout_goneMarginRight 0x7f0401f6 +int attr layout_goneMarginStart 0x7f0401f7 +int attr layout_goneMarginTop 0x7f0401f8 +int attr layout_insetEdge 0x7f0401f9 +int attr layout_keyline 0x7f0401fa +int attr layout_optimizationLevel 0x7f0401fb +int attr layout_scrollFlags 0x7f0401fc +int attr layout_scrollInterpolator 0x7f0401fd +int attr liftOnScroll 0x7f0401fe +int attr liftOnScrollTargetViewId 0x7f0401ff +int attr limitBoundsTo 0x7f040200 +int attr lineHeight 0x7f040201 +int attr lineSpacing 0x7f040202 +int attr linearProgressIndicatorStyle 0x7f040203 +int attr listChoiceBackgroundIndicator 0x7f040204 +int attr listChoiceIndicatorMultipleAnimated 0x7f040205 +int attr listChoiceIndicatorSingleAnimated 0x7f040206 +int attr listDividerAlertDialog 0x7f040207 +int attr listItemLayout 0x7f040208 +int attr listLayout 0x7f040209 +int attr listMenuViewStyle 0x7f04020a +int attr listPopupWindowStyle 0x7f04020b +int attr listPreferredItemHeight 0x7f04020c +int attr listPreferredItemHeightLarge 0x7f04020d +int attr listPreferredItemHeightSmall 0x7f04020e +int attr listPreferredItemPaddingEnd 0x7f04020f +int attr listPreferredItemPaddingLeft 0x7f040210 +int attr listPreferredItemPaddingRight 0x7f040211 +int attr listPreferredItemPaddingStart 0x7f040212 +int attr logo 0x7f040213 +int attr logoDescription 0x7f040214 +int attr materialAlertDialogBodyTextStyle 0x7f040215 +int attr materialAlertDialogTheme 0x7f040216 +int attr materialAlertDialogTitleIconStyle 0x7f040217 +int attr materialAlertDialogTitlePanelStyle 0x7f040218 +int attr materialAlertDialogTitleTextStyle 0x7f040219 +int attr materialButtonOutlinedStyle 0x7f04021a +int attr materialButtonStyle 0x7f04021b +int attr materialButtonToggleGroupStyle 0x7f04021c +int attr materialCalendarDay 0x7f04021d +int attr materialCalendarFullscreenTheme 0x7f04021e +int attr materialCalendarHeaderCancelButton 0x7f04021f +int attr materialCalendarHeaderConfirmButton 0x7f040220 +int attr materialCalendarHeaderDivider 0x7f040221 +int attr materialCalendarHeaderLayout 0x7f040222 +int attr materialCalendarHeaderSelection 0x7f040223 +int attr materialCalendarHeaderTitle 0x7f040224 +int attr materialCalendarHeaderToggleButton 0x7f040225 +int attr materialCalendarMonth 0x7f040226 +int attr materialCalendarMonthNavigationButton 0x7f040227 +int attr materialCalendarStyle 0x7f040228 +int attr materialCalendarTheme 0x7f040229 +int attr materialCalendarYearNavigationButton 0x7f04022a +int attr materialCardViewStyle 0x7f04022b +int attr materialCircleRadius 0x7f04022c +int attr materialClockStyle 0x7f04022d +int attr materialThemeOverlay 0x7f04022e +int attr materialTimePickerStyle 0x7f04022f +int attr materialTimePickerTheme 0x7f040230 +int attr maxAcceleration 0x7f040231 +int attr maxActionInlineWidth 0x7f040232 +int attr maxButtonHeight 0x7f040233 +int attr maxCharacterCount 0x7f040234 +int attr maxHeight 0x7f040235 +int attr maxImageSize 0x7f040236 +int attr maxLines 0x7f040237 +int attr maxVelocity 0x7f040238 +int attr maxWidth 0x7f040239 +int attr measureWithLargestChild 0x7f04023a +int attr menu 0x7f04023b +int attr minHeight 0x7f04023c +int attr minHideDelay 0x7f04023d +int attr minSeparation 0x7f04023e +int attr minTouchTargetSize 0x7f04023f +int attr minWidth 0x7f040240 +int attr mock_diagonalsColor 0x7f040241 +int attr mock_label 0x7f040242 +int attr mock_labelBackgroundColor 0x7f040243 +int attr mock_labelColor 0x7f040244 +int attr mock_showDiagonals 0x7f040245 +int attr mock_showLabel 0x7f040246 +int attr motionDebug 0x7f040247 +int attr motionInterpolator 0x7f040248 +int attr motionPathRotate 0x7f040249 +int attr motionProgress 0x7f04024a +int attr motionStagger 0x7f04024b +int attr motionTarget 0x7f04024c +int attr motion_postLayoutCollision 0x7f04024d +int attr motion_triggerOnCollision 0x7f04024e +int attr moveWhenScrollAtTop 0x7f04024f +int attr multiChoiceItemLayout 0x7f040250 +int attr navigationContentDescription 0x7f040251 +int attr navigationIcon 0x7f040252 +int attr navigationIconTint 0x7f040253 +int attr navigationMode 0x7f040254 +int attr navigationViewStyle 0x7f040255 +int attr nestedScrollFlags 0x7f040256 +int attr nestedScrollable 0x7f040257 +int attr number 0x7f040258 +int attr numericModifiers 0x7f040259 +int attr onCross 0x7f04025a +int attr onHide 0x7f04025b +int attr onNegativeCross 0x7f04025c +int attr onPositiveCross 0x7f04025d +int attr onShow 0x7f04025e +int attr onTouchUp 0x7f04025f +int attr overlapAnchor 0x7f040260 +int attr overlay 0x7f040261 +int attr paddingBottomNoButtons 0x7f040262 +int attr paddingBottomSystemWindowInsets 0x7f040263 +int attr paddingEnd 0x7f040264 +int attr paddingLeftSystemWindowInsets 0x7f040265 +int attr paddingRightSystemWindowInsets 0x7f040266 +int attr paddingStart 0x7f040267 +int attr paddingTopNoTitle 0x7f040268 +int attr panelBackground 0x7f040269 +int attr panelMenuListTheme 0x7f04026a +int attr panelMenuListWidth 0x7f04026b +int attr passwordToggleContentDescription 0x7f04026c +int attr passwordToggleDrawable 0x7f04026d +int attr passwordToggleEnabled 0x7f04026e +int attr passwordToggleTint 0x7f04026f +int attr passwordToggleTintMode 0x7f040270 +int attr pathMotionArc 0x7f040271 +int attr path_percent 0x7f040272 +int attr percentHeight 0x7f040273 +int attr percentWidth 0x7f040274 +int attr percentX 0x7f040275 +int attr percentY 0x7f040276 +int attr perpendicularPath_percent 0x7f040277 +int attr pivotAnchor 0x7f040278 +int attr placeholderText 0x7f040279 +int attr placeholderTextAppearance 0x7f04027a +int attr placeholderTextColor 0x7f04027b +int attr placeholder_emptyVisibility 0x7f04027c +int attr popupMenuBackground 0x7f04027d +int attr popupMenuStyle 0x7f04027e +int attr popupTheme 0x7f04027f +int attr popupWindowStyle 0x7f040280 +int attr prefixText 0x7f040281 +int attr prefixTextAppearance 0x7f040282 +int attr prefixTextColor 0x7f040283 +int attr preserveIconSpacing 0x7f040284 +int attr pressedTranslationZ 0x7f040285 +int attr progressBarPadding 0x7f040286 +int attr progressBarStyle 0x7f040287 +int attr queryBackground 0x7f040288 +int attr queryHint 0x7f040289 +int attr radioButtonStyle 0x7f04028a +int attr rangeFillColor 0x7f04028b +int attr ratingBarStyle 0x7f04028c +int attr ratingBarStyleIndicator 0x7f04028d +int attr ratingBarStyleSmall 0x7f04028e +int attr recyclerViewStyle 0x7f04028f +int attr region_heightLessThan 0x7f040290 +int attr region_heightMoreThan 0x7f040291 +int attr region_widthLessThan 0x7f040292 +int attr region_widthMoreThan 0x7f040293 +int attr reverseLayout 0x7f040294 +int attr rippleColor 0x7f040295 +int attr round 0x7f040296 +int attr roundPercent 0x7f040297 +int attr saturation 0x7f040298 +int attr scrimAnimationDuration 0x7f040299 +int attr scrimBackground 0x7f04029a +int attr scrimVisibleHeightTrigger 0x7f04029b +int attr searchHintIcon 0x7f04029c +int attr searchIcon 0x7f04029d +int attr searchViewStyle 0x7f04029e +int attr seekBarStyle 0x7f04029f +int attr selectableItemBackground 0x7f0402a0 +int attr selectableItemBackgroundBorderless 0x7f0402a1 +int attr selectionRequired 0x7f0402a2 +int attr selectorSize 0x7f0402a3 +int attr shapeAppearance 0x7f0402a4 +int attr shapeAppearanceLargeComponent 0x7f0402a5 +int attr shapeAppearanceMediumComponent 0x7f0402a6 +int attr shapeAppearanceOverlay 0x7f0402a7 +int attr shapeAppearanceSmallComponent 0x7f0402a8 +int attr showAnimationBehavior 0x7f0402a9 +int attr showAsAction 0x7f0402aa +int attr showDelay 0x7f0402ab +int attr showDividers 0x7f0402ac +int attr showMotionSpec 0x7f0402ad +int attr showPaths 0x7f0402ae +int attr showText 0x7f0402af +int attr showTitle 0x7f0402b0 +int attr shrinkMotionSpec 0x7f0402b1 +int attr singleChoiceItemLayout 0x7f0402b2 +int attr singleLine 0x7f0402b3 +int attr singleSelection 0x7f0402b4 +int attr sizePercent 0x7f0402b5 +int attr sliderStyle 0x7f0402b6 +int attr snackbarButtonStyle 0x7f0402b7 +int attr snackbarStyle 0x7f0402b8 +int attr snackbarTextViewStyle 0x7f0402b9 +int attr spanCount 0x7f0402ba +int attr spinBars 0x7f0402bb +int attr spinnerDropDownItemStyle 0x7f0402bc +int attr spinnerStyle 0x7f0402bd +int attr splitTrack 0x7f0402be +int attr srcCompat 0x7f0402bf +int attr stackFromEnd 0x7f0402c0 +int attr staggered 0x7f0402c1 +int attr startIconCheckable 0x7f0402c2 +int attr startIconContentDescription 0x7f0402c3 +int attr startIconDrawable 0x7f0402c4 +int attr startIconTint 0x7f0402c5 +int attr startIconTintMode 0x7f0402c6 +int attr state_above_anchor 0x7f0402c7 +int attr state_collapsed 0x7f0402c8 +int attr state_collapsible 0x7f0402c9 +int attr state_dragged 0x7f0402ca +int attr state_liftable 0x7f0402cb +int attr state_lifted 0x7f0402cc +int attr statusBarBackground 0x7f0402cd +int attr statusBarForeground 0x7f0402ce +int attr statusBarScrim 0x7f0402cf +int attr strokeColor 0x7f0402d0 +int attr strokeWidth 0x7f0402d1 +int attr subMenuArrow 0x7f0402d2 +int attr submitBackground 0x7f0402d3 +int attr subtitle 0x7f0402d4 +int attr subtitleTextAppearance 0x7f0402d5 +int attr subtitleTextColor 0x7f0402d6 +int attr subtitleTextStyle 0x7f0402d7 +int attr suffixText 0x7f0402d8 +int attr suffixTextAppearance 0x7f0402d9 +int attr suffixTextColor 0x7f0402da +int attr suggestionRowLayout 0x7f0402db +int attr switchMinWidth 0x7f0402dc +int attr switchPadding 0x7f0402dd +int attr switchStyle 0x7f0402de +int attr switchTextAppearance 0x7f0402df +int attr tabBackground 0x7f0402e0 +int attr tabContentStart 0x7f0402e1 +int attr tabGravity 0x7f0402e2 +int attr tabIconTint 0x7f0402e3 +int attr tabIconTintMode 0x7f0402e4 +int attr tabIndicator 0x7f0402e5 +int attr tabIndicatorAnimationDuration 0x7f0402e6 +int attr tabIndicatorAnimationMode 0x7f0402e7 +int attr tabIndicatorColor 0x7f0402e8 +int attr tabIndicatorFullWidth 0x7f0402e9 +int attr tabIndicatorGravity 0x7f0402ea +int attr tabIndicatorHeight 0x7f0402eb +int attr tabInlineLabel 0x7f0402ec +int attr tabMaxWidth 0x7f0402ed +int attr tabMinWidth 0x7f0402ee +int attr tabMode 0x7f0402ef +int attr tabPadding 0x7f0402f0 +int attr tabPaddingBottom 0x7f0402f1 +int attr tabPaddingEnd 0x7f0402f2 +int attr tabPaddingStart 0x7f0402f3 +int attr tabPaddingTop 0x7f0402f4 +int attr tabRippleColor 0x7f0402f5 +int attr tabSelectedTextColor 0x7f0402f6 +int attr tabStyle 0x7f0402f7 +int attr tabTextAppearance 0x7f0402f8 +int attr tabTextColor 0x7f0402f9 +int attr tabUnboundedRipple 0x7f0402fa +int attr targetId 0x7f0402fb +int attr telltales_tailColor 0x7f0402fc +int attr telltales_tailScale 0x7f0402fd +int attr telltales_velocityMode 0x7f0402fe +int attr textAllCaps 0x7f0402ff +int attr textAppearanceBody1 0x7f040300 +int attr textAppearanceBody2 0x7f040301 +int attr textAppearanceButton 0x7f040302 +int attr textAppearanceCaption 0x7f040303 +int attr textAppearanceHeadline1 0x7f040304 +int attr textAppearanceHeadline2 0x7f040305 +int attr textAppearanceHeadline3 0x7f040306 +int attr textAppearanceHeadline4 0x7f040307 +int attr textAppearanceHeadline5 0x7f040308 +int attr textAppearanceHeadline6 0x7f040309 +int attr textAppearanceLargePopupMenu 0x7f04030a +int attr textAppearanceLineHeightEnabled 0x7f04030b +int attr textAppearanceListItem 0x7f04030c +int attr textAppearanceListItemSecondary 0x7f04030d +int attr textAppearanceListItemSmall 0x7f04030e +int attr textAppearanceOverline 0x7f04030f +int attr textAppearancePopupMenuHeader 0x7f040310 +int attr textAppearanceSearchResultSubtitle 0x7f040311 +int attr textAppearanceSearchResultTitle 0x7f040312 +int attr textAppearanceSmallPopupMenu 0x7f040313 +int attr textAppearanceSubtitle1 0x7f040314 +int attr textAppearanceSubtitle2 0x7f040315 +int attr textColorAlertDialogListItem 0x7f040316 +int attr textColorSearchUrl 0x7f040317 +int attr textEndPadding 0x7f040318 +int attr textInputLayoutFocusedRectEnabled 0x7f040319 +int attr textInputStyle 0x7f04031a +int attr textLocale 0x7f04031b +int attr textStartPadding 0x7f04031c +int attr theme 0x7f04031d +int attr themeLineHeight 0x7f04031e +int attr thickness 0x7f04031f +int attr thumbColor 0x7f040320 +int attr thumbElevation 0x7f040321 +int attr thumbRadius 0x7f040322 +int attr thumbStrokeColor 0x7f040323 +int attr thumbStrokeWidth 0x7f040324 +int attr thumbTextPadding 0x7f040325 +int attr thumbTint 0x7f040326 +int attr thumbTintMode 0x7f040327 +int attr tickColor 0x7f040328 +int attr tickColorActive 0x7f040329 +int attr tickColorInactive 0x7f04032a +int attr tickMark 0x7f04032b +int attr tickMarkTint 0x7f04032c +int attr tickMarkTintMode 0x7f04032d +int attr tickVisible 0x7f04032e +int attr tint 0x7f04032f +int attr tintMode 0x7f040330 +int attr title 0x7f040331 +int attr titleEnabled 0x7f040332 +int attr titleMargin 0x7f040333 +int attr titleMarginBottom 0x7f040334 +int attr titleMarginEnd 0x7f040335 +int attr titleMarginStart 0x7f040336 +int attr titleMarginTop 0x7f040337 +int attr titleMargins 0x7f040338 +int attr titleTextAppearance 0x7f040339 +int attr titleTextColor 0x7f04033a +int attr titleTextStyle 0x7f04033b +int attr toolbarId 0x7f04033c +int attr toolbarNavigationButtonStyle 0x7f04033d +int attr toolbarStyle 0x7f04033e +int attr tooltipForegroundColor 0x7f04033f +int attr tooltipFrameBackground 0x7f040340 +int attr tooltipStyle 0x7f040341 +int attr tooltipText 0x7f040342 +int attr touchAnchorId 0x7f040343 +int attr touchAnchorSide 0x7f040344 +int attr touchRegionId 0x7f040345 +int attr track 0x7f040346 +int attr trackColor 0x7f040347 +int attr trackColorActive 0x7f040348 +int attr trackColorInactive 0x7f040349 +int attr trackCornerRadius 0x7f04034a +int attr trackHeight 0x7f04034b +int attr trackThickness 0x7f04034c +int attr trackTint 0x7f04034d +int attr trackTintMode 0x7f04034e +int attr transitionDisable 0x7f04034f +int attr transitionEasing 0x7f040350 +int attr transitionFlags 0x7f040351 +int attr transitionPathRotate 0x7f040352 +int attr transitionShapeAppearance 0x7f040353 +int attr triggerId 0x7f040354 +int attr triggerReceiver 0x7f040355 +int attr triggerSlack 0x7f040356 +int attr ttcIndex 0x7f040357 +int attr useCompatPadding 0x7f040358 +int attr useMaterialThemeColors 0x7f040359 +int attr values 0x7f04035a +int attr verticalOffset 0x7f04035b +int attr viewInflaterClass 0x7f04035c +int attr visibilityMode 0x7f04035d +int attr voiceIcon 0x7f04035e +int attr warmth 0x7f04035f +int attr waveDecay 0x7f040360 +int attr waveOffset 0x7f040361 +int attr wavePeriod 0x7f040362 +int attr waveShape 0x7f040363 +int attr waveVariesBy 0x7f040364 +int attr windowActionBar 0x7f040365 +int attr windowActionBarOverlay 0x7f040366 +int attr windowActionModeOverlay 0x7f040367 +int attr windowFixedHeightMajor 0x7f040368 +int attr windowFixedHeightMinor 0x7f040369 +int attr windowFixedWidthMajor 0x7f04036a +int attr windowFixedWidthMinor 0x7f04036b +int attr windowMinWidthMajor 0x7f04036c +int attr windowMinWidthMinor 0x7f04036d +int attr windowNoTitle 0x7f04036e +int attr yearSelectedStyle 0x7f04036f +int attr yearStyle 0x7f040370 +int attr yearTodayStyle 0x7f040371 +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int bool mtrl_btn_textappearance_all_caps 0x7f050004 +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_decor_view_status_guard 0x7f060006 +int color abc_decor_view_status_guard_light 0x7f060007 +int color abc_hint_foreground_material_dark 0x7f060008 +int color abc_hint_foreground_material_light 0x7f060009 +int color abc_primary_text_disable_only_material_dark 0x7f06000a +int color abc_primary_text_disable_only_material_light 0x7f06000b +int color abc_primary_text_material_dark 0x7f06000c +int color abc_primary_text_material_light 0x7f06000d +int color abc_search_url_text 0x7f06000e +int color abc_search_url_text_normal 0x7f06000f +int color abc_search_url_text_pressed 0x7f060010 +int color abc_search_url_text_selected 0x7f060011 +int color abc_secondary_text_material_dark 0x7f060012 +int color abc_secondary_text_material_light 0x7f060013 +int color abc_tint_btn_checkable 0x7f060014 +int color abc_tint_default 0x7f060015 +int color abc_tint_edittext 0x7f060016 +int color abc_tint_seek_thumb 0x7f060017 +int color abc_tint_spinner 0x7f060018 +int color abc_tint_switch_track 0x7f060019 +int color accent_material_dark 0x7f06001a +int color accent_material_light 0x7f06001b +int color androidx_core_ripple_material_light 0x7f06001c +int color androidx_core_secondary_text_default_material_light 0x7f06001d +int color background_floating_material_dark 0x7f06001e +int color background_floating_material_light 0x7f06001f +int color background_material_dark 0x7f060020 +int color background_material_light 0x7f060021 +int color black 0x7f060022 +int color bright_foreground_disabled_material_dark 0x7f060023 +int color bright_foreground_disabled_material_light 0x7f060024 +int color bright_foreground_inverse_material_dark 0x7f060025 +int color bright_foreground_inverse_material_light 0x7f060026 +int color bright_foreground_material_dark 0x7f060027 +int color bright_foreground_material_light 0x7f060028 +int color button_material_dark 0x7f060029 +int color button_material_light 0x7f06002a +int color cardview_dark_background 0x7f06002b +int color cardview_light_background 0x7f06002c +int color cardview_shadow_end_color 0x7f06002d +int color cardview_shadow_start_color 0x7f06002e +int color checkbox_themeable_attribute_color 0x7f06002f +int color design_bottom_navigation_shadow_color 0x7f060030 +int color design_box_stroke_color 0x7f060031 +int color design_dark_default_color_background 0x7f060032 +int color design_dark_default_color_error 0x7f060033 +int color design_dark_default_color_on_background 0x7f060034 +int color design_dark_default_color_on_error 0x7f060035 +int color design_dark_default_color_on_primary 0x7f060036 +int color design_dark_default_color_on_secondary 0x7f060037 +int color design_dark_default_color_on_surface 0x7f060038 +int color design_dark_default_color_primary 0x7f060039 +int color design_dark_default_color_primary_dark 0x7f06003a +int color design_dark_default_color_primary_variant 0x7f06003b +int color design_dark_default_color_secondary 0x7f06003c +int color design_dark_default_color_secondary_variant 0x7f06003d +int color design_dark_default_color_surface 0x7f06003e +int color design_default_color_background 0x7f06003f +int color design_default_color_error 0x7f060040 +int color design_default_color_on_background 0x7f060041 +int color design_default_color_on_error 0x7f060042 +int color design_default_color_on_primary 0x7f060043 +int color design_default_color_on_secondary 0x7f060044 +int color design_default_color_on_surface 0x7f060045 +int color design_default_color_primary 0x7f060046 +int color design_default_color_primary_dark 0x7f060047 +int color design_default_color_primary_variant 0x7f060048 +int color design_default_color_secondary 0x7f060049 +int color design_default_color_secondary_variant 0x7f06004a +int color design_default_color_surface 0x7f06004b +int color design_error 0x7f06004c +int color design_fab_shadow_end_color 0x7f06004d +int color design_fab_shadow_mid_color 0x7f06004e +int color design_fab_shadow_start_color 0x7f06004f +int color design_fab_stroke_end_inner_color 0x7f060050 +int color design_fab_stroke_end_outer_color 0x7f060051 +int color design_fab_stroke_top_inner_color 0x7f060052 +int color design_fab_stroke_top_outer_color 0x7f060053 +int color design_icon_tint 0x7f060054 +int color design_snackbar_background_color 0x7f060055 +int color dim_foreground_disabled_material_dark 0x7f060056 +int color dim_foreground_disabled_material_light 0x7f060057 +int color dim_foreground_material_dark 0x7f060058 +int color dim_foreground_material_light 0x7f060059 +int color error_color_material_dark 0x7f06005a +int color error_color_material_light 0x7f06005b +int color foreground_material_dark 0x7f06005c +int color foreground_material_light 0x7f06005d +int color highlighted_text_material_dark 0x7f06005e +int color highlighted_text_material_light 0x7f06005f +int color light_blue 0x7f060060 +int color material_blue_grey_800 0x7f060061 +int color material_blue_grey_900 0x7f060062 +int color material_blue_grey_950 0x7f060063 +int color material_cursor_color 0x7f060064 +int color material_deep_teal_200 0x7f060065 +int color material_deep_teal_500 0x7f060066 +int color material_grey_100 0x7f060067 +int color material_grey_300 0x7f060068 +int color material_grey_50 0x7f060069 +int color material_grey_600 0x7f06006a +int color material_grey_800 0x7f06006b +int color material_grey_850 0x7f06006c +int color material_grey_900 0x7f06006d +int color material_on_background_disabled 0x7f06006e +int color material_on_background_emphasis_high_type 0x7f06006f +int color material_on_background_emphasis_medium 0x7f060070 +int color material_on_primary_disabled 0x7f060071 +int color material_on_primary_emphasis_high_type 0x7f060072 +int color material_on_primary_emphasis_medium 0x7f060073 +int color material_on_surface_disabled 0x7f060074 +int color material_on_surface_emphasis_high_type 0x7f060075 +int color material_on_surface_emphasis_medium 0x7f060076 +int color material_on_surface_stroke 0x7f060077 +int color material_slider_active_tick_marks_color 0x7f060078 +int color material_slider_active_track_color 0x7f060079 +int color material_slider_halo_color 0x7f06007a +int color material_slider_inactive_tick_marks_color 0x7f06007b +int color material_slider_inactive_track_color 0x7f06007c +int color material_slider_thumb_color 0x7f06007d +int color material_timepicker_button_background 0x7f06007e +int color material_timepicker_button_stroke 0x7f06007f +int color material_timepicker_clock_text_color 0x7f060080 +int color material_timepicker_clockface 0x7f060081 +int color material_timepicker_modebutton_tint 0x7f060082 +int color mtrl_bottom_nav_colored_item_tint 0x7f060083 +int color mtrl_bottom_nav_colored_ripple_color 0x7f060084 +int color mtrl_bottom_nav_item_tint 0x7f060085 +int color mtrl_bottom_nav_ripple_color 0x7f060086 +int color mtrl_btn_bg_color_selector 0x7f060087 +int color mtrl_btn_ripple_color 0x7f060088 +int color mtrl_btn_stroke_color_selector 0x7f060089 +int color mtrl_btn_text_btn_bg_color_selector 0x7f06008a +int color mtrl_btn_text_btn_ripple_color 0x7f06008b +int color mtrl_btn_text_color_disabled 0x7f06008c +int color mtrl_btn_text_color_selector 0x7f06008d +int color mtrl_btn_transparent_bg_color 0x7f06008e +int color mtrl_calendar_item_stroke_color 0x7f06008f +int color mtrl_calendar_selected_range 0x7f060090 +int color mtrl_card_view_foreground 0x7f060091 +int color mtrl_card_view_ripple 0x7f060092 +int color mtrl_chip_background_color 0x7f060093 +int color mtrl_chip_close_icon_tint 0x7f060094 +int color mtrl_chip_surface_color 0x7f060095 +int color mtrl_chip_text_color 0x7f060096 +int color mtrl_choice_chip_background_color 0x7f060097 +int color mtrl_choice_chip_ripple_color 0x7f060098 +int color mtrl_choice_chip_text_color 0x7f060099 +int color mtrl_error 0x7f06009a +int color mtrl_fab_bg_color_selector 0x7f06009b +int color mtrl_fab_icon_text_color_selector 0x7f06009c +int color mtrl_fab_ripple_color 0x7f06009d +int color mtrl_filled_background_color 0x7f06009e +int color mtrl_filled_icon_tint 0x7f06009f +int color mtrl_filled_stroke_color 0x7f0600a0 +int color mtrl_indicator_text_color 0x7f0600a1 +int color mtrl_navigation_item_background_color 0x7f0600a2 +int color mtrl_navigation_item_icon_tint 0x7f0600a3 +int color mtrl_navigation_item_text_color 0x7f0600a4 +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0600a5 +int color mtrl_on_surface_ripple_color 0x7f0600a6 +int color mtrl_outlined_icon_tint 0x7f0600a7 +int color mtrl_outlined_stroke_color 0x7f0600a8 +int color mtrl_popupmenu_overlay_color 0x7f0600a9 +int color mtrl_scrim_color 0x7f0600aa +int color mtrl_tabs_colored_ripple_color 0x7f0600ab +int color mtrl_tabs_icon_color_selector 0x7f0600ac +int color mtrl_tabs_icon_color_selector_colored 0x7f0600ad +int color mtrl_tabs_legacy_text_color_selector 0x7f0600ae +int color mtrl_tabs_ripple_color 0x7f0600af +int color mtrl_text_btn_text_color_selector 0x7f0600b0 +int color mtrl_textinput_default_box_stroke_color 0x7f0600b1 +int color mtrl_textinput_disabled_color 0x7f0600b2 +int color mtrl_textinput_filled_box_default_background_color 0x7f0600b3 +int color mtrl_textinput_focused_box_stroke_color 0x7f0600b4 +int color mtrl_textinput_hovered_box_stroke_color 0x7f0600b5 +int color notification_action_color_filter 0x7f0600b6 +int color notification_icon_bg_color 0x7f0600b7 +int color primary_dark_material_dark 0x7f0600b8 +int color primary_dark_material_light 0x7f0600b9 +int color primary_material_dark 0x7f0600ba +int color primary_material_light 0x7f0600bb +int color primary_text_default_material_dark 0x7f0600bc +int color primary_text_default_material_light 0x7f0600bd +int color primary_text_disabled_material_dark 0x7f0600be +int color primary_text_disabled_material_light 0x7f0600bf +int color purple_700 0x7f0600c0 +int color radiobutton_themeable_attribute_color 0x7f0600c1 +int color ripple_material_dark 0x7f0600c2 +int color ripple_material_light 0x7f0600c3 +int color secondary_text_default_material_dark 0x7f0600c4 +int color secondary_text_default_material_light 0x7f0600c5 +int color secondary_text_disabled_material_dark 0x7f0600c6 +int color secondary_text_disabled_material_light 0x7f0600c7 +int color switch_thumb_disabled_material_dark 0x7f0600c8 +int color switch_thumb_disabled_material_light 0x7f0600c9 +int color switch_thumb_material_dark 0x7f0600ca +int color switch_thumb_material_light 0x7f0600cb +int color switch_thumb_normal_material_dark 0x7f0600cc +int color switch_thumb_normal_material_light 0x7f0600cd +int color test_mtrl_calendar_day 0x7f0600ce +int color test_mtrl_calendar_day_selected 0x7f0600cf +int color tooltip_background_dark 0x7f0600d0 +int color tooltip_background_light 0x7f0600d1 +int color white 0x7f0600d2 +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_stacked_max_height 0x7f07000a +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000b +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000c +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000d +int dimen abc_action_button_min_height_material 0x7f07000e +int dimen abc_action_button_min_width_material 0x7f07000f +int dimen abc_action_button_min_width_overflow_material 0x7f070010 +int dimen abc_alert_dialog_button_bar_height 0x7f070011 +int dimen abc_alert_dialog_button_dimen 0x7f070012 +int dimen abc_button_inset_horizontal_material 0x7f070013 +int dimen abc_button_inset_vertical_material 0x7f070014 +int dimen abc_button_padding_horizontal_material 0x7f070015 +int dimen abc_button_padding_vertical_material 0x7f070016 +int dimen abc_cascading_menus_min_smallest_width 0x7f070017 +int dimen abc_config_prefDialogWidth 0x7f070018 +int dimen abc_control_corner_material 0x7f070019 +int dimen abc_control_inset_material 0x7f07001a +int dimen abc_control_padding_material 0x7f07001b +int dimen abc_dialog_corner_radius_material 0x7f07001c +int dimen abc_dialog_fixed_height_major 0x7f07001d +int dimen abc_dialog_fixed_height_minor 0x7f07001e +int dimen abc_dialog_fixed_width_major 0x7f07001f +int dimen abc_dialog_fixed_width_minor 0x7f070020 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021 +int dimen abc_dialog_list_padding_top_no_title 0x7f070022 +int dimen abc_dialog_min_width_major 0x7f070023 +int dimen abc_dialog_min_width_minor 0x7f070024 +int dimen abc_dialog_padding_material 0x7f070025 +int dimen abc_dialog_padding_top_material 0x7f070026 +int dimen abc_dialog_title_divider_material 0x7f070027 +int dimen abc_disabled_alpha_material_dark 0x7f070028 +int dimen abc_disabled_alpha_material_light 0x7f070029 +int dimen abc_dropdownitem_icon_width 0x7f07002a +int dimen abc_dropdownitem_text_padding_left 0x7f07002b +int dimen abc_dropdownitem_text_padding_right 0x7f07002c +int dimen abc_edit_text_inset_bottom_material 0x7f07002d +int dimen abc_edit_text_inset_horizontal_material 0x7f07002e +int dimen abc_edit_text_inset_top_material 0x7f07002f +int dimen abc_floating_window_z 0x7f070030 +int dimen abc_list_item_height_large_material 0x7f070031 +int dimen abc_list_item_height_material 0x7f070032 +int dimen abc_list_item_height_small_material 0x7f070033 +int dimen abc_list_item_padding_horizontal_material 0x7f070034 +int dimen abc_panel_menu_list_width 0x7f070035 +int dimen abc_progress_bar_height_material 0x7f070036 +int dimen abc_search_view_preferred_height 0x7f070037 +int dimen abc_search_view_preferred_width 0x7f070038 +int dimen abc_seekbar_track_background_height_material 0x7f070039 +int dimen abc_seekbar_track_progress_height_material 0x7f07003a +int dimen abc_select_dialog_padding_start_material 0x7f07003b +int dimen abc_switch_padding 0x7f07003c +int dimen abc_text_size_body_1_material 0x7f07003d +int dimen abc_text_size_body_2_material 0x7f07003e +int dimen abc_text_size_button_material 0x7f07003f +int dimen abc_text_size_caption_material 0x7f070040 +int dimen abc_text_size_display_1_material 0x7f070041 +int dimen abc_text_size_display_2_material 0x7f070042 +int dimen abc_text_size_display_3_material 0x7f070043 +int dimen abc_text_size_display_4_material 0x7f070044 +int dimen abc_text_size_headline_material 0x7f070045 +int dimen abc_text_size_large_material 0x7f070046 +int dimen abc_text_size_medium_material 0x7f070047 +int dimen abc_text_size_menu_header_material 0x7f070048 +int dimen abc_text_size_menu_material 0x7f070049 +int dimen abc_text_size_small_material 0x7f07004a +int dimen abc_text_size_subhead_material 0x7f07004b +int dimen abc_text_size_subtitle_material_toolbar 0x7f07004c +int dimen abc_text_size_title_material 0x7f07004d +int dimen abc_text_size_title_material_toolbar 0x7f07004e +int dimen action_bar_size 0x7f07004f +int dimen appcompat_dialog_background_inset 0x7f070050 +int dimen cardview_compat_inset_shadow 0x7f070051 +int dimen cardview_default_elevation 0x7f070052 +int dimen cardview_default_radius 0x7f070053 +int dimen clock_face_margin_start 0x7f070054 +int dimen compat_button_inset_horizontal_material 0x7f070055 +int dimen compat_button_inset_vertical_material 0x7f070056 +int dimen compat_button_padding_horizontal_material 0x7f070057 +int dimen compat_button_padding_vertical_material 0x7f070058 +int dimen compat_control_corner_material 0x7f070059 +int dimen compat_notification_large_icon_max_height 0x7f07005a +int dimen compat_notification_large_icon_max_width 0x7f07005b +int dimen default_dimension 0x7f07005c +int dimen design_appbar_elevation 0x7f07005d +int dimen design_bottom_navigation_active_item_max_width 0x7f07005e +int dimen design_bottom_navigation_active_item_min_width 0x7f07005f +int dimen design_bottom_navigation_active_text_size 0x7f070060 +int dimen design_bottom_navigation_elevation 0x7f070061 +int dimen design_bottom_navigation_height 0x7f070062 +int dimen design_bottom_navigation_icon_size 0x7f070063 +int dimen design_bottom_navigation_item_max_width 0x7f070064 +int dimen design_bottom_navigation_item_min_width 0x7f070065 +int dimen design_bottom_navigation_label_padding 0x7f070066 +int dimen design_bottom_navigation_margin 0x7f070067 +int dimen design_bottom_navigation_shadow_height 0x7f070068 +int dimen design_bottom_navigation_text_size 0x7f070069 +int dimen design_bottom_sheet_elevation 0x7f07006a +int dimen design_bottom_sheet_modal_elevation 0x7f07006b +int dimen design_bottom_sheet_peek_height_min 0x7f07006c +int dimen design_fab_border_width 0x7f07006d +int dimen design_fab_elevation 0x7f07006e +int dimen design_fab_image_size 0x7f07006f +int dimen design_fab_size_mini 0x7f070070 +int dimen design_fab_size_normal 0x7f070071 +int dimen design_fab_translation_z_hovered_focused 0x7f070072 +int dimen design_fab_translation_z_pressed 0x7f070073 +int dimen design_navigation_elevation 0x7f070074 +int dimen design_navigation_icon_padding 0x7f070075 +int dimen design_navigation_icon_size 0x7f070076 +int dimen design_navigation_item_horizontal_padding 0x7f070077 +int dimen design_navigation_item_icon_padding 0x7f070078 +int dimen design_navigation_max_width 0x7f070079 +int dimen design_navigation_padding_bottom 0x7f07007a +int dimen design_navigation_separator_vertical_padding 0x7f07007b +int dimen design_snackbar_action_inline_max_width 0x7f07007c +int dimen design_snackbar_action_text_color_alpha 0x7f07007d +int dimen design_snackbar_background_corner_radius 0x7f07007e +int dimen design_snackbar_elevation 0x7f07007f +int dimen design_snackbar_extra_spacing_horizontal 0x7f070080 +int dimen design_snackbar_max_width 0x7f070081 +int dimen design_snackbar_min_width 0x7f070082 +int dimen design_snackbar_padding_horizontal 0x7f070083 +int dimen design_snackbar_padding_vertical 0x7f070084 +int dimen design_snackbar_padding_vertical_2lines 0x7f070085 +int dimen design_snackbar_text_size 0x7f070086 +int dimen design_tab_max_width 0x7f070087 +int dimen design_tab_scrollable_min_width 0x7f070088 +int dimen design_tab_text_size 0x7f070089 +int dimen design_tab_text_size_2line 0x7f07008a +int dimen design_textinput_caption_translate_y 0x7f07008b +int dimen disabled_alpha_material_dark 0x7f07008c +int dimen disabled_alpha_material_light 0x7f07008d +int dimen fastscroll_default_thickness 0x7f07008e +int dimen fastscroll_margin 0x7f07008f +int dimen fastscroll_minimum_range 0x7f070090 +int dimen highlight_alpha_material_colored 0x7f070091 +int dimen highlight_alpha_material_dark 0x7f070092 +int dimen highlight_alpha_material_light 0x7f070093 +int dimen hint_alpha_material_dark 0x7f070094 +int dimen hint_alpha_material_light 0x7f070095 +int dimen hint_pressed_alpha_material_dark 0x7f070096 +int dimen hint_pressed_alpha_material_light 0x7f070097 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070098 +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070099 +int dimen item_touch_helper_swipe_escape_velocity 0x7f07009a +int dimen material_clock_display_padding 0x7f07009b +int dimen material_clock_face_margin_top 0x7f07009c +int dimen material_clock_hand_center_dot_radius 0x7f07009d +int dimen material_clock_hand_padding 0x7f07009e +int dimen material_clock_hand_stroke_width 0x7f07009f +int dimen material_clock_number_text_size 0x7f0700a0 +int dimen material_clock_period_toggle_height 0x7f0700a1 +int dimen material_clock_period_toggle_margin_left 0x7f0700a2 +int dimen material_clock_period_toggle_width 0x7f0700a3 +int dimen material_clock_size 0x7f0700a4 +int dimen material_cursor_inset_bottom 0x7f0700a5 +int dimen material_cursor_inset_top 0x7f0700a6 +int dimen material_cursor_width 0x7f0700a7 +int dimen material_emphasis_disabled 0x7f0700a8 +int dimen material_emphasis_high_type 0x7f0700a9 +int dimen material_emphasis_medium 0x7f0700aa +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f0700ab +int dimen material_filled_edittext_font_1_3_padding_top 0x7f0700ac +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f0700ad +int dimen material_filled_edittext_font_2_0_padding_top 0x7f0700ae +int dimen material_font_1_3_box_collapsed_padding_top 0x7f0700af +int dimen material_font_2_0_box_collapsed_padding_top 0x7f0700b0 +int dimen material_helper_text_default_padding_top 0x7f0700b1 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f0700b2 +int dimen material_helper_text_font_1_3_padding_top 0x7f0700b3 +int dimen material_input_text_to_prefix_suffix_padding 0x7f0700b4 +int dimen material_text_view_test_line_height 0x7f0700b5 +int dimen material_text_view_test_line_height_override 0x7f0700b6 +int dimen material_timepicker_dialog_buttons_margin_top 0x7f0700b7 +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f0700b8 +int dimen mtrl_alert_dialog_background_inset_end 0x7f0700b9 +int dimen mtrl_alert_dialog_background_inset_start 0x7f0700ba +int dimen mtrl_alert_dialog_background_inset_top 0x7f0700bb +int dimen mtrl_alert_dialog_picker_background_inset 0x7f0700bc +int dimen mtrl_badge_horizontal_edge_offset 0x7f0700bd +int dimen mtrl_badge_long_text_horizontal_padding 0x7f0700be +int dimen mtrl_badge_radius 0x7f0700bf +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f0700c0 +int dimen mtrl_badge_text_size 0x7f0700c1 +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f0700c2 +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f0700c3 +int dimen mtrl_badge_with_text_radius 0x7f0700c4 +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f0700c5 +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f0700c6 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f0700c7 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0700c8 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f0700c9 +int dimen mtrl_bottomappbar_height 0x7f0700ca +int dimen mtrl_btn_corner_radius 0x7f0700cb +int dimen mtrl_btn_dialog_btn_min_width 0x7f0700cc +int dimen mtrl_btn_disabled_elevation 0x7f0700cd +int dimen mtrl_btn_disabled_z 0x7f0700ce +int dimen mtrl_btn_elevation 0x7f0700cf +int dimen mtrl_btn_focused_z 0x7f0700d0 +int dimen mtrl_btn_hovered_z 0x7f0700d1 +int dimen mtrl_btn_icon_btn_padding_left 0x7f0700d2 +int dimen mtrl_btn_icon_padding 0x7f0700d3 +int dimen mtrl_btn_inset 0x7f0700d4 +int dimen mtrl_btn_letter_spacing 0x7f0700d5 +int dimen mtrl_btn_padding_bottom 0x7f0700d6 +int dimen mtrl_btn_padding_left 0x7f0700d7 +int dimen mtrl_btn_padding_right 0x7f0700d8 +int dimen mtrl_btn_padding_top 0x7f0700d9 +int dimen mtrl_btn_pressed_z 0x7f0700da +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f0700db +int dimen mtrl_btn_stroke_size 0x7f0700dc +int dimen mtrl_btn_text_btn_icon_padding 0x7f0700dd +int dimen mtrl_btn_text_btn_padding_left 0x7f0700de +int dimen mtrl_btn_text_btn_padding_right 0x7f0700df +int dimen mtrl_btn_text_size 0x7f0700e0 +int dimen mtrl_btn_z 0x7f0700e1 +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f0700e2 +int dimen mtrl_calendar_action_height 0x7f0700e3 +int dimen mtrl_calendar_action_padding 0x7f0700e4 +int dimen mtrl_calendar_bottom_padding 0x7f0700e5 +int dimen mtrl_calendar_content_padding 0x7f0700e6 +int dimen mtrl_calendar_day_corner 0x7f0700e7 +int dimen mtrl_calendar_day_height 0x7f0700e8 +int dimen mtrl_calendar_day_horizontal_padding 0x7f0700e9 +int dimen mtrl_calendar_day_today_stroke 0x7f0700ea +int dimen mtrl_calendar_day_vertical_padding 0x7f0700eb +int dimen mtrl_calendar_day_width 0x7f0700ec +int dimen mtrl_calendar_days_of_week_height 0x7f0700ed +int dimen mtrl_calendar_dialog_background_inset 0x7f0700ee +int dimen mtrl_calendar_header_content_padding 0x7f0700ef +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f0700f0 +int dimen mtrl_calendar_header_divider_thickness 0x7f0700f1 +int dimen mtrl_calendar_header_height 0x7f0700f2 +int dimen mtrl_calendar_header_height_fullscreen 0x7f0700f3 +int dimen mtrl_calendar_header_selection_line_height 0x7f0700f4 +int dimen mtrl_calendar_header_text_padding 0x7f0700f5 +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f0700f6 +int dimen mtrl_calendar_header_toggle_margin_top 0x7f0700f7 +int dimen mtrl_calendar_landscape_header_width 0x7f0700f8 +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f0700f9 +int dimen mtrl_calendar_month_horizontal_padding 0x7f0700fa +int dimen mtrl_calendar_month_vertical_padding 0x7f0700fb +int dimen mtrl_calendar_navigation_bottom_padding 0x7f0700fc +int dimen mtrl_calendar_navigation_height 0x7f0700fd +int dimen mtrl_calendar_navigation_top_padding 0x7f0700fe +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f0700ff +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f070100 +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f070101 +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f070102 +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f070103 +int dimen mtrl_calendar_text_input_padding_top 0x7f070104 +int dimen mtrl_calendar_title_baseline_to_top 0x7f070105 +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f070106 +int dimen mtrl_calendar_year_corner 0x7f070107 +int dimen mtrl_calendar_year_height 0x7f070108 +int dimen mtrl_calendar_year_horizontal_padding 0x7f070109 +int dimen mtrl_calendar_year_vertical_padding 0x7f07010a +int dimen mtrl_calendar_year_width 0x7f07010b +int dimen mtrl_card_checked_icon_margin 0x7f07010c +int dimen mtrl_card_checked_icon_size 0x7f07010d +int dimen mtrl_card_corner_radius 0x7f07010e +int dimen mtrl_card_dragged_z 0x7f07010f +int dimen mtrl_card_elevation 0x7f070110 +int dimen mtrl_card_spacing 0x7f070111 +int dimen mtrl_chip_pressed_translation_z 0x7f070112 +int dimen mtrl_chip_text_size 0x7f070113 +int dimen mtrl_edittext_rectangle_top_offset 0x7f070114 +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f070115 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f070116 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f070117 +int dimen mtrl_extended_fab_bottom_padding 0x7f070118 +int dimen mtrl_extended_fab_corner_radius 0x7f070119 +int dimen mtrl_extended_fab_disabled_elevation 0x7f07011a +int dimen mtrl_extended_fab_disabled_translation_z 0x7f07011b +int dimen mtrl_extended_fab_elevation 0x7f07011c +int dimen mtrl_extended_fab_end_padding 0x7f07011d +int dimen mtrl_extended_fab_end_padding_icon 0x7f07011e +int dimen mtrl_extended_fab_icon_size 0x7f07011f +int dimen mtrl_extended_fab_icon_text_spacing 0x7f070120 +int dimen mtrl_extended_fab_min_height 0x7f070121 +int dimen mtrl_extended_fab_min_width 0x7f070122 +int dimen mtrl_extended_fab_start_padding 0x7f070123 +int dimen mtrl_extended_fab_start_padding_icon 0x7f070124 +int dimen mtrl_extended_fab_top_padding 0x7f070125 +int dimen mtrl_extended_fab_translation_z_base 0x7f070126 +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f070127 +int dimen mtrl_extended_fab_translation_z_pressed 0x7f070128 +int dimen mtrl_fab_elevation 0x7f070129 +int dimen mtrl_fab_min_touch_target 0x7f07012a +int dimen mtrl_fab_translation_z_hovered_focused 0x7f07012b +int dimen mtrl_fab_translation_z_pressed 0x7f07012c +int dimen mtrl_high_ripple_default_alpha 0x7f07012d +int dimen mtrl_high_ripple_focused_alpha 0x7f07012e +int dimen mtrl_high_ripple_hovered_alpha 0x7f07012f +int dimen mtrl_high_ripple_pressed_alpha 0x7f070130 +int dimen mtrl_large_touch_target 0x7f070131 +int dimen mtrl_low_ripple_default_alpha 0x7f070132 +int dimen mtrl_low_ripple_focused_alpha 0x7f070133 +int dimen mtrl_low_ripple_hovered_alpha 0x7f070134 +int dimen mtrl_low_ripple_pressed_alpha 0x7f070135 +int dimen mtrl_min_touch_target_size 0x7f070136 +int dimen mtrl_navigation_elevation 0x7f070137 +int dimen mtrl_navigation_item_horizontal_padding 0x7f070138 +int dimen mtrl_navigation_item_icon_padding 0x7f070139 +int dimen mtrl_navigation_item_icon_size 0x7f07013a +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f07013b +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f07013c +int dimen mtrl_progress_circular_inset 0x7f07013d +int dimen mtrl_progress_circular_inset_extra_small 0x7f07013e +int dimen mtrl_progress_circular_inset_medium 0x7f07013f +int dimen mtrl_progress_circular_inset_small 0x7f070140 +int dimen mtrl_progress_circular_radius 0x7f070141 +int dimen mtrl_progress_circular_size 0x7f070142 +int dimen mtrl_progress_circular_size_extra_small 0x7f070143 +int dimen mtrl_progress_circular_size_medium 0x7f070144 +int dimen mtrl_progress_circular_size_small 0x7f070145 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f070146 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f070147 +int dimen mtrl_progress_circular_track_thickness_small 0x7f070148 +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f070149 +int dimen mtrl_progress_track_thickness 0x7f07014a +int dimen mtrl_shape_corner_size_large_component 0x7f07014b +int dimen mtrl_shape_corner_size_medium_component 0x7f07014c +int dimen mtrl_shape_corner_size_small_component 0x7f07014d +int dimen mtrl_slider_halo_radius 0x7f07014e +int dimen mtrl_slider_label_padding 0x7f07014f +int dimen mtrl_slider_label_radius 0x7f070150 +int dimen mtrl_slider_label_square_side 0x7f070151 +int dimen mtrl_slider_thumb_elevation 0x7f070152 +int dimen mtrl_slider_thumb_radius 0x7f070153 +int dimen mtrl_slider_track_height 0x7f070154 +int dimen mtrl_slider_track_side_padding 0x7f070155 +int dimen mtrl_slider_track_top 0x7f070156 +int dimen mtrl_slider_widget_height 0x7f070157 +int dimen mtrl_snackbar_action_text_color_alpha 0x7f070158 +int dimen mtrl_snackbar_background_corner_radius 0x7f070159 +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f07015a +int dimen mtrl_snackbar_margin 0x7f07015b +int dimen mtrl_snackbar_message_margin_horizontal 0x7f07015c +int dimen mtrl_snackbar_padding_horizontal 0x7f07015d +int dimen mtrl_switch_thumb_elevation 0x7f07015e +int dimen mtrl_textinput_box_corner_radius_medium 0x7f07015f +int dimen mtrl_textinput_box_corner_radius_small 0x7f070160 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f070161 +int dimen mtrl_textinput_box_stroke_width_default 0x7f070162 +int dimen mtrl_textinput_box_stroke_width_focused 0x7f070163 +int dimen mtrl_textinput_counter_margin_start 0x7f070164 +int dimen mtrl_textinput_end_icon_margin_start 0x7f070165 +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f070166 +int dimen mtrl_textinput_start_icon_margin_end 0x7f070167 +int dimen mtrl_toolbar_default_height 0x7f070168 +int dimen mtrl_tooltip_arrowSize 0x7f070169 +int dimen mtrl_tooltip_cornerSize 0x7f07016a +int dimen mtrl_tooltip_minHeight 0x7f07016b +int dimen mtrl_tooltip_minWidth 0x7f07016c +int dimen mtrl_tooltip_padding 0x7f07016d +int dimen mtrl_transition_shared_axis_slide_distance 0x7f07016e +int dimen notification_action_icon_size 0x7f07016f +int dimen notification_action_text_size 0x7f070170 +int dimen notification_big_circle_margin 0x7f070171 +int dimen notification_content_margin_start 0x7f070172 +int dimen notification_large_icon_height 0x7f070173 +int dimen notification_large_icon_width 0x7f070174 +int dimen notification_main_column_padding_top 0x7f070175 +int dimen notification_media_narrow_margin 0x7f070176 +int dimen notification_right_icon_size 0x7f070177 +int dimen notification_right_side_padding_top 0x7f070178 +int dimen notification_small_icon_background_padding 0x7f070179 +int dimen notification_small_icon_size_as_large 0x7f07017a +int dimen notification_subtext_size 0x7f07017b +int dimen notification_top_pad 0x7f07017c +int dimen notification_top_pad_large_text 0x7f07017d +int dimen test_mtrl_calendar_day_cornerSize 0x7f07017e +int dimen tooltip_corner_radius 0x7f07017f +int dimen tooltip_horizontal_padding 0x7f070180 +int dimen tooltip_margin 0x7f070181 +int dimen tooltip_precise_anchor_extra_offset 0x7f070182 +int dimen tooltip_precise_anchor_threshold 0x7f070183 +int dimen tooltip_vertical_padding 0x7f070184 +int dimen tooltip_y_offset_non_touch 0x7f070185 +int dimen tooltip_y_offset_touch 0x7f070186 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_switch_thumb_material 0x7f080046 +int drawable abc_switch_track_mtrl_alpha 0x7f080047 +int drawable abc_tab_indicator_material 0x7f080048 +int drawable abc_tab_indicator_mtrl_alpha 0x7f080049 +int drawable abc_text_cursor_material 0x7f08004a +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004b +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004c +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004d +int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004e +int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004f +int drawable abc_text_select_handle_right_mtrl_light 0x7f080050 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080051 +int drawable abc_textfield_default_mtrl_alpha 0x7f080052 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080053 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080054 +int drawable abc_textfield_search_material 0x7f080055 +int drawable abc_vector_test 0x7f080056 +int drawable avd_hide_password 0x7f080057 +int drawable avd_show_password 0x7f080058 +int drawable btn_checkbox_checked_mtrl 0x7f080059 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f08005a +int drawable btn_checkbox_unchecked_mtrl 0x7f08005b +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08005c +int drawable btn_radio_off_mtrl 0x7f08005d +int drawable btn_radio_off_to_on_mtrl_animation 0x7f08005e +int drawable btn_radio_on_mtrl 0x7f08005f +int drawable btn_radio_on_to_off_mtrl_animation 0x7f080060 +int drawable btn_style 0x7f080061 +int drawable design_bottom_navigation_item_background 0x7f080062 +int drawable design_fab_background 0x7f080063 +int drawable design_ic_visibility 0x7f080064 +int drawable design_ic_visibility_off 0x7f080065 +int drawable design_password_eye 0x7f080066 +int drawable design_snackbar_background 0x7f080067 +int drawable ic_clock_black_24dp 0x7f080068 +int drawable ic_keyboard_black_24dp 0x7f080069 +int drawable ic_mtrl_checked_circle 0x7f08006a +int drawable ic_mtrl_chip_checked_black 0x7f08006b +int drawable ic_mtrl_chip_checked_circle 0x7f08006c +int drawable ic_mtrl_chip_close_circle 0x7f08006d +int drawable material_cursor_drawable 0x7f08006e +int drawable material_ic_calendar_black_24dp 0x7f08006f +int drawable material_ic_clear_black_24dp 0x7f080070 +int drawable material_ic_edit_black_24dp 0x7f080071 +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f080072 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f080073 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f080074 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f080075 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f080076 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f080077 +int drawable mtrl_dialog_background 0x7f080078 +int drawable mtrl_dropdown_arrow 0x7f080079 +int drawable mtrl_ic_arrow_drop_down 0x7f08007a +int drawable mtrl_ic_arrow_drop_up 0x7f08007b +int drawable mtrl_ic_cancel 0x7f08007c +int drawable mtrl_ic_error 0x7f08007d +int drawable mtrl_popupmenu_background 0x7f08007e +int drawable mtrl_popupmenu_background_dark 0x7f08007f +int drawable mtrl_tabs_default_indicator 0x7f080080 +int drawable navigation_empty_icon 0x7f080081 +int drawable notification_action_background 0x7f080082 +int drawable notification_bg 0x7f080083 +int drawable notification_bg_low 0x7f080084 +int drawable notification_bg_low_normal 0x7f080085 +int drawable notification_bg_low_pressed 0x7f080086 +int drawable notification_bg_normal 0x7f080087 +int drawable notification_bg_normal_pressed 0x7f080088 +int drawable notification_icon_background 0x7f080089 +int drawable notification_template_icon_bg 0x7f08008a +int drawable notification_template_icon_low_bg 0x7f08008b +int drawable notification_tile_bg 0x7f08008c +int drawable notify_panel_notification_icon_bg 0x7f08008d +int drawable test_custom_background 0x7f08008e +int drawable tooltip_frame_dark 0x7f08008f +int drawable tooltip_frame_light 0x7f080090 +int id BOTTOM_END 0x7f0b0001 +int id BOTTOM_START 0x7f0b0002 +int id NO_DEBUG 0x7f0b0003 +int id SHOW_ALL 0x7f0b0004 +int id SHOW_PATH 0x7f0b0005 +int id SHOW_PROGRESS 0x7f0b0006 +int id TOP_END 0x7f0b0007 +int id TOP_START 0x7f0b0008 +int id accelerate 0x7f0b0009 +int id accessibility_action_clickable_span 0x7f0b000a +int id accessibility_custom_action_0 0x7f0b000b +int id accessibility_custom_action_1 0x7f0b000c +int id accessibility_custom_action_10 0x7f0b000d +int id accessibility_custom_action_11 0x7f0b000e +int id accessibility_custom_action_12 0x7f0b000f +int id accessibility_custom_action_13 0x7f0b0010 +int id accessibility_custom_action_14 0x7f0b0011 +int id accessibility_custom_action_15 0x7f0b0012 +int id accessibility_custom_action_16 0x7f0b0013 +int id accessibility_custom_action_17 0x7f0b0014 +int id accessibility_custom_action_18 0x7f0b0015 +int id accessibility_custom_action_19 0x7f0b0016 +int id accessibility_custom_action_2 0x7f0b0017 +int id accessibility_custom_action_20 0x7f0b0018 +int id accessibility_custom_action_21 0x7f0b0019 +int id accessibility_custom_action_22 0x7f0b001a +int id accessibility_custom_action_23 0x7f0b001b +int id accessibility_custom_action_24 0x7f0b001c +int id accessibility_custom_action_25 0x7f0b001d +int id accessibility_custom_action_26 0x7f0b001e +int id accessibility_custom_action_27 0x7f0b001f +int id accessibility_custom_action_28 0x7f0b0020 +int id accessibility_custom_action_29 0x7f0b0021 +int id accessibility_custom_action_3 0x7f0b0022 +int id accessibility_custom_action_30 0x7f0b0023 +int id accessibility_custom_action_31 0x7f0b0024 +int id accessibility_custom_action_4 0x7f0b0025 +int id accessibility_custom_action_5 0x7f0b0026 +int id accessibility_custom_action_6 0x7f0b0027 +int id accessibility_custom_action_7 0x7f0b0028 +int id accessibility_custom_action_8 0x7f0b0029 +int id accessibility_custom_action_9 0x7f0b002a +int id action_bar 0x7f0b002b +int id action_bar_activity_content 0x7f0b002c +int id action_bar_container 0x7f0b002d +int id action_bar_root 0x7f0b002e +int id action_bar_spinner 0x7f0b002f +int id action_bar_subtitle 0x7f0b0030 +int id action_bar_title 0x7f0b0031 +int id action_container 0x7f0b0032 +int id action_context_bar 0x7f0b0033 +int id action_divider 0x7f0b0034 +int id action_image 0x7f0b0035 +int id action_menu_divider 0x7f0b0036 +int id action_menu_presenter 0x7f0b0037 +int id action_mode_bar 0x7f0b0038 +int id action_mode_bar_stub 0x7f0b0039 +int id action_mode_close_button 0x7f0b003a +int id action_text 0x7f0b003b +int id actions 0x7f0b003c +int id activity_chooser_view_content 0x7f0b003d +int id add 0x7f0b003e +int id alertTitle 0x7f0b003f +int id aligned 0x7f0b0040 +int id animateToEnd 0x7f0b0041 +int id animateToStart 0x7f0b0042 +int id asConfigured 0x7f0b0043 +int id async 0x7f0b0044 +int id auto 0x7f0b0045 +int id autoComplete 0x7f0b0046 +int id autoCompleteToEnd 0x7f0b0047 +int id autoCompleteToStart 0x7f0b0048 +int id barrier 0x7f0b0049 +int id baseline 0x7f0b004a +int id blocking 0x7f0b004b +int id bottom 0x7f0b004c +int id bounce 0x7f0b004d +int id buttonPanel 0x7f0b004e +int id cancel_button 0x7f0b004f +int id center 0x7f0b0050 +int id chain 0x7f0b0051 +int id checkbox 0x7f0b0052 +int id checked 0x7f0b0053 +int id chip 0x7f0b0054 +int id chip1 0x7f0b0055 +int id chip2 0x7f0b0056 +int id chip3 0x7f0b0057 +int id chip_group 0x7f0b0058 +int id chronometer 0x7f0b0059 +int id circle_center 0x7f0b005a +int id clear_text 0x7f0b005b +int id clockwise 0x7f0b005c +int id confirm_button 0x7f0b005d +int id container 0x7f0b005e +int id content 0x7f0b005f +int id contentPanel 0x7f0b0060 +int id contiguous 0x7f0b0061 +int id coordinator 0x7f0b0062 +int id cos 0x7f0b0063 +int id counterclockwise 0x7f0b0064 +int id custom 0x7f0b0065 +int id customPanel 0x7f0b0066 +int id cut 0x7f0b0067 +int id date_picker_actions 0x7f0b0068 +int id decelerate 0x7f0b0069 +int id decelerateAndComplete 0x7f0b006a +int id decor_content_parent 0x7f0b006b +int id default_activity_button 0x7f0b006c +int id deltaRelative 0x7f0b006d +int id design_bottom_sheet 0x7f0b006e +int id design_menu_item_action_area 0x7f0b006f +int id design_menu_item_action_area_stub 0x7f0b0070 +int id design_menu_item_text 0x7f0b0071 +int id design_navigation_view 0x7f0b0072 +int id dialog_button 0x7f0b0073 +int id disjoint 0x7f0b0074 +int id dragDown 0x7f0b0075 +int id dragEnd 0x7f0b0076 +int id dragLeft 0x7f0b0077 +int id dragRight 0x7f0b0078 +int id dragStart 0x7f0b0079 +int id dragUp 0x7f0b007a +int id dropdown_menu 0x7f0b007b +int id easeIn 0x7f0b007c +int id easeInOut 0x7f0b007d +int id easeOut 0x7f0b007e +int id edit_query 0x7f0b007f +int id elastic 0x7f0b0080 +int id end 0x7f0b0081 +int id endToStart 0x7f0b0082 +int id expand_activities_button 0x7f0b0083 +int id expanded_menu 0x7f0b0084 +int id fade 0x7f0b0085 +int id fill 0x7f0b0086 +int id filled 0x7f0b0087 +int id fixed 0x7f0b0088 +int id flip 0x7f0b0089 +int id floating 0x7f0b008a +int id forever 0x7f0b008b +int id ghost_view 0x7f0b008c +int id ghost_view_holder 0x7f0b008d +int id gone 0x7f0b008e +int id group_divider 0x7f0b008f +int id guideline 0x7f0b0090 +int id header_title 0x7f0b0091 +int id home 0x7f0b0092 +int id honorRequest 0x7f0b0093 +int id icon 0x7f0b0094 +int id icon_group 0x7f0b0095 +int id ignore 0x7f0b0096 +int id ignoreRequest 0x7f0b0097 +int id image 0x7f0b0098 +int id info 0x7f0b0099 +int id invisible 0x7f0b009a +int id inward 0x7f0b009b +int id italic 0x7f0b009c +int id item_touch_helper_previous_elevation 0x7f0b009d +int id jumpToEnd 0x7f0b009e +int id jumpToStart 0x7f0b009f +int id labelGroup 0x7f0b00a0 +int id labeled 0x7f0b00a1 +int id largeLabel 0x7f0b00a2 +int id layout 0x7f0b00a3 +int id left 0x7f0b00a4 +int id leftToRight 0x7f0b00a5 +int id line1 0x7f0b00a6 +int id line3 0x7f0b00a7 +int id linear 0x7f0b00a8 +int id listMode 0x7f0b00a9 +int id list_item 0x7f0b00aa +int id masked 0x7f0b00ab +int id material_clock_display 0x7f0b00ac +int id material_clock_face 0x7f0b00ad +int id material_clock_hand 0x7f0b00ae +int id material_clock_period_am_button 0x7f0b00af +int id material_clock_period_pm_button 0x7f0b00b0 +int id material_clock_period_toggle 0x7f0b00b1 +int id material_hour_text_input 0x7f0b00b2 +int id material_hour_tv 0x7f0b00b3 +int id material_label 0x7f0b00b4 +int id material_minute_text_input 0x7f0b00b5 +int id material_minute_tv 0x7f0b00b6 +int id material_textinput_timepicker 0x7f0b00b7 +int id material_timepicker_cancel_button 0x7f0b00b8 +int id material_timepicker_container 0x7f0b00b9 +int id material_timepicker_edit_text 0x7f0b00ba +int id material_timepicker_mode_button 0x7f0b00bb +int id material_timepicker_ok_button 0x7f0b00bc +int id material_timepicker_view 0x7f0b00bd +int id material_value_index 0x7f0b00be +int id message 0x7f0b00bf +int id middle 0x7f0b00c0 +int id mini 0x7f0b00c1 +int id month_grid 0x7f0b00c2 +int id month_navigation_bar 0x7f0b00c3 +int id month_navigation_fragment_toggle 0x7f0b00c4 +int id month_navigation_next 0x7f0b00c5 +int id month_navigation_previous 0x7f0b00c6 +int id month_title 0x7f0b00c7 +int id motion_base 0x7f0b00c8 +int id mtrl_anchor_parent 0x7f0b00c9 +int id mtrl_calendar_day_selector_frame 0x7f0b00ca +int id mtrl_calendar_days_of_week 0x7f0b00cb +int id mtrl_calendar_frame 0x7f0b00cc +int id mtrl_calendar_main_pane 0x7f0b00cd +int id mtrl_calendar_months 0x7f0b00ce +int id mtrl_calendar_selection_frame 0x7f0b00cf +int id mtrl_calendar_text_input_frame 0x7f0b00d0 +int id mtrl_calendar_year_selector_frame 0x7f0b00d1 +int id mtrl_card_checked_layer_id 0x7f0b00d2 +int id mtrl_child_content_container 0x7f0b00d3 +int id mtrl_internal_children_alpha_tag 0x7f0b00d4 +int id mtrl_motion_snapshot_view 0x7f0b00d5 +int id mtrl_picker_fullscreen 0x7f0b00d6 +int id mtrl_picker_header 0x7f0b00d7 +int id mtrl_picker_header_selection_text 0x7f0b00d8 +int id mtrl_picker_header_title_and_selection 0x7f0b00d9 +int id mtrl_picker_header_toggle 0x7f0b00da +int id mtrl_picker_text_input_date 0x7f0b00db +int id mtrl_picker_text_input_range_end 0x7f0b00dc +int id mtrl_picker_text_input_range_start 0x7f0b00dd +int id mtrl_picker_title_text 0x7f0b00de +int id mtrl_view_tag_bottom_padding 0x7f0b00df +int id multiply 0x7f0b00e0 +int id navigation_header_container 0x7f0b00e1 +int id none 0x7f0b00e2 +int id normal 0x7f0b00e3 +int id notification_background 0x7f0b00e4 +int id notification_main_column 0x7f0b00e5 +int id notification_main_column_container 0x7f0b00e6 +int id off 0x7f0b00e7 +int id on 0x7f0b00e8 +int id outline 0x7f0b00e9 +int id outward 0x7f0b00ea +int id packed 0x7f0b00eb +int id parallax 0x7f0b00ec +int id parent 0x7f0b00ed +int id parentPanel 0x7f0b00ee +int id parentRelative 0x7f0b00ef +int id parent_matrix 0x7f0b00f0 +int id password_toggle 0x7f0b00f1 +int id path 0x7f0b00f2 +int id pathRelative 0x7f0b00f3 +int id percent 0x7f0b00f4 +int id pin 0x7f0b00f5 +int id position 0x7f0b00f6 +int id postLayout 0x7f0b00f7 +int id progress_circular 0x7f0b00f8 +int id progress_horizontal 0x7f0b00f9 +int id radio 0x7f0b00fa +int id rectangles 0x7f0b00fb +int id reverseSawtooth 0x7f0b00fc +int id right 0x7f0b00fd +int id rightToLeft 0x7f0b00fe +int id right_icon 0x7f0b00ff +int id right_side 0x7f0b0100 +int id rounded 0x7f0b0101 +int id row_index_key 0x7f0b0102 +int id save_non_transition_alpha 0x7f0b0103 +int id save_overlay_view 0x7f0b0104 +int id sawtooth 0x7f0b0105 +int id scale 0x7f0b0106 +int id screen 0x7f0b0107 +int id scrollIndicatorDown 0x7f0b0108 +int id scrollIndicatorUp 0x7f0b0109 +int id scrollView 0x7f0b010a +int id scrollable 0x7f0b010b +int id search_badge 0x7f0b010c +int id search_bar 0x7f0b010d +int id search_button 0x7f0b010e +int id search_close_btn 0x7f0b010f +int id search_edit_frame 0x7f0b0110 +int id search_go_btn 0x7f0b0111 +int id search_mag_icon 0x7f0b0112 +int id search_plate 0x7f0b0113 +int id search_src_text 0x7f0b0114 +int id search_voice_btn 0x7f0b0115 +int id select_dialog_listview 0x7f0b0116 +int id selected 0x7f0b0117 +int id selection_type 0x7f0b0118 +int id shortcut 0x7f0b0119 +int id sin 0x7f0b011a +int id slide 0x7f0b011b +int id smallLabel 0x7f0b011c +int id snackbar_action 0x7f0b011d +int id snackbar_text 0x7f0b011e +int id spacer 0x7f0b011f +int id spline 0x7f0b0120 +int id split_action_bar 0x7f0b0121 +int id spread 0x7f0b0122 +int id spread_inside 0x7f0b0123 +int id square 0x7f0b0124 +int id src_atop 0x7f0b0125 +int id src_in 0x7f0b0126 +int id src_over 0x7f0b0127 +int id standard 0x7f0b0128 +int id start 0x7f0b0129 +int id startHorizontal 0x7f0b012a +int id startToEnd 0x7f0b012b +int id startVertical 0x7f0b012c +int id staticLayout 0x7f0b012d +int id staticPostLayout 0x7f0b012e +int id stop 0x7f0b012f +int id stretch 0x7f0b0130 +int id submenuarrow 0x7f0b0131 +int id submit_area 0x7f0b0132 +int id tabMode 0x7f0b0133 +int id tag_accessibility_actions 0x7f0b0134 +int id tag_accessibility_clickable_spans 0x7f0b0135 +int id tag_accessibility_heading 0x7f0b0136 +int id tag_accessibility_pane_title 0x7f0b0137 +int id tag_screen_reader_focusable 0x7f0b0138 +int id tag_transition_group 0x7f0b0139 +int id tag_unhandled_key_event_manager 0x7f0b013a +int id tag_unhandled_key_listeners 0x7f0b013b +int id test_checkbox_android_button_tint 0x7f0b013c +int id test_checkbox_app_button_tint 0x7f0b013d +int id test_radiobutton_android_button_tint 0x7f0b013e +int id test_radiobutton_app_button_tint 0x7f0b013f +int id text 0x7f0b0140 +int id text2 0x7f0b0141 +int id textSpacerNoButtons 0x7f0b0142 +int id textSpacerNoTitle 0x7f0b0143 +int id text_input_end_icon 0x7f0b0144 +int id text_input_error_icon 0x7f0b0145 +int id text_input_start_icon 0x7f0b0146 +int id textinput_counter 0x7f0b0147 +int id textinput_error 0x7f0b0148 +int id textinput_helper_text 0x7f0b0149 +int id textinput_placeholder 0x7f0b014a +int id textinput_prefix_text 0x7f0b014b +int id textinput_suffix_text 0x7f0b014c +int id time 0x7f0b014d +int id title 0x7f0b014e +int id titleDividerNoCustom 0x7f0b014f +int id title_template 0x7f0b0150 +int id top 0x7f0b0151 +int id topPanel 0x7f0b0152 +int id touch_outside 0x7f0b0153 +int id transition_current_scene 0x7f0b0154 +int id transition_layout_save 0x7f0b0155 +int id transition_position 0x7f0b0156 +int id transition_scene_layoutid_cache 0x7f0b0157 +int id transition_transform 0x7f0b0158 +int id triangle 0x7f0b0159 +int id unchecked 0x7f0b015a +int id uniform 0x7f0b015b +int id unlabeled 0x7f0b015c +int id up 0x7f0b015d +int id view_offset_helper 0x7f0b015e +int id visible 0x7f0b015f +int id withinBounds 0x7f0b0160 +int id wrap 0x7f0b0161 +int id wrap_content 0x7f0b0162 +int id zero_corner_chip 0x7f0b0163 +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer app_bar_elevation_anim_duration 0x7f0c0003 +int integer bottom_sheet_slide_duration 0x7f0c0004 +int integer cancel_button_image_alpha 0x7f0c0005 +int integer config_tooltipAnimTime 0x7f0c0006 +int integer design_snackbar_text_max_lines 0x7f0c0007 +int integer design_tab_indicator_anim_duration_ms 0x7f0c0008 +int integer hide_password_duration 0x7f0c0009 +int integer mtrl_badge_max_character_count 0x7f0c000a +int integer mtrl_btn_anim_delay_ms 0x7f0c000b +int integer mtrl_btn_anim_duration_ms 0x7f0c000c +int integer mtrl_calendar_header_orientation 0x7f0c000d +int integer mtrl_calendar_selection_text_lines 0x7f0c000e +int integer mtrl_calendar_year_selector_span 0x7f0c000f +int integer mtrl_card_anim_delay_ms 0x7f0c0010 +int integer mtrl_card_anim_duration_ms 0x7f0c0011 +int integer mtrl_chip_anim_duration 0x7f0c0012 +int integer mtrl_tab_indicator_anim_duration_ms 0x7f0c0013 +int integer show_password_duration 0x7f0c0014 +int integer status_bar_notification_info_maxnum 0x7f0c0015 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int interpolator mtrl_fast_out_linear_in 0x7f0d0008 +int interpolator mtrl_fast_out_slow_in 0x7f0d0009 +int interpolator mtrl_linear 0x7f0d000a +int interpolator mtrl_linear_out_slow_in 0x7f0d000b +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout custom_dialog 0x7f0e001d +int layout design_bottom_navigation_item 0x7f0e001e +int layout design_bottom_sheet_dialog 0x7f0e001f +int layout design_layout_snackbar 0x7f0e0020 +int layout design_layout_snackbar_include 0x7f0e0021 +int layout design_layout_tab_icon 0x7f0e0022 +int layout design_layout_tab_text 0x7f0e0023 +int layout design_menu_item_action_area 0x7f0e0024 +int layout design_navigation_item 0x7f0e0025 +int layout design_navigation_item_header 0x7f0e0026 +int layout design_navigation_item_separator 0x7f0e0027 +int layout design_navigation_item_subheader 0x7f0e0028 +int layout design_navigation_menu 0x7f0e0029 +int layout design_navigation_menu_item 0x7f0e002a +int layout design_text_input_end_icon 0x7f0e002b +int layout design_text_input_start_icon 0x7f0e002c +int layout layout_loading 0x7f0e002d +int layout material_chip_input_combo 0x7f0e002e +int layout material_clock_display 0x7f0e002f +int layout material_clock_display_divider 0x7f0e0030 +int layout material_clock_period_toggle 0x7f0e0031 +int layout material_clock_period_toggle_land 0x7f0e0032 +int layout material_clockface_textview 0x7f0e0033 +int layout material_clockface_view 0x7f0e0034 +int layout material_radial_view_group 0x7f0e0035 +int layout material_textinput_timepicker 0x7f0e0036 +int layout material_time_chip 0x7f0e0037 +int layout material_time_input 0x7f0e0038 +int layout material_timepicker 0x7f0e0039 +int layout material_timepicker_dialog 0x7f0e003a +int layout material_timepicker_textinput_display 0x7f0e003b +int layout mtrl_alert_dialog 0x7f0e003c +int layout mtrl_alert_dialog_actions 0x7f0e003d +int layout mtrl_alert_dialog_title 0x7f0e003e +int layout mtrl_alert_select_dialog_item 0x7f0e003f +int layout mtrl_alert_select_dialog_multichoice 0x7f0e0040 +int layout mtrl_alert_select_dialog_singlechoice 0x7f0e0041 +int layout mtrl_calendar_day 0x7f0e0042 +int layout mtrl_calendar_day_of_week 0x7f0e0043 +int layout mtrl_calendar_days_of_week 0x7f0e0044 +int layout mtrl_calendar_horizontal 0x7f0e0045 +int layout mtrl_calendar_month 0x7f0e0046 +int layout mtrl_calendar_month_labeled 0x7f0e0047 +int layout mtrl_calendar_month_navigation 0x7f0e0048 +int layout mtrl_calendar_months 0x7f0e0049 +int layout mtrl_calendar_vertical 0x7f0e004a +int layout mtrl_calendar_year 0x7f0e004b +int layout mtrl_layout_snackbar 0x7f0e004c +int layout mtrl_layout_snackbar_include 0x7f0e004d +int layout mtrl_picker_actions 0x7f0e004e +int layout mtrl_picker_dialog 0x7f0e004f +int layout mtrl_picker_fullscreen 0x7f0e0050 +int layout mtrl_picker_header_dialog 0x7f0e0051 +int layout mtrl_picker_header_fullscreen 0x7f0e0052 +int layout mtrl_picker_header_selection_text 0x7f0e0053 +int layout mtrl_picker_header_title_text 0x7f0e0054 +int layout mtrl_picker_header_toggle 0x7f0e0055 +int layout mtrl_picker_text_input_date 0x7f0e0056 +int layout mtrl_picker_text_input_date_range 0x7f0e0057 +int layout notification_action 0x7f0e0058 +int layout notification_action_tombstone 0x7f0e0059 +int layout notification_template_custom_big 0x7f0e005a +int layout notification_template_icon_group 0x7f0e005b +int layout notification_template_part_chronometer 0x7f0e005c +int layout notification_template_part_time 0x7f0e005d +int layout select_dialog_item_material 0x7f0e005e +int layout select_dialog_multichoice_material 0x7f0e005f +int layout select_dialog_singlechoice_material 0x7f0e0060 +int layout support_simple_spinner_dropdown_item 0x7f0e0061 +int layout test_action_chip 0x7f0e0062 +int layout test_chip_zero_corner_radius 0x7f0e0063 +int layout test_design_checkbox 0x7f0e0064 +int layout test_design_radiobutton 0x7f0e0065 +int layout test_reflow_chipgroup 0x7f0e0066 +int layout test_toolbar 0x7f0e0067 +int layout test_toolbar_custom_background 0x7f0e0068 +int layout test_toolbar_elevation 0x7f0e0069 +int layout test_toolbar_surface 0x7f0e006a +int layout text_view_with_line_height_from_appearance 0x7f0e006b +int layout text_view_with_line_height_from_layout 0x7f0e006c +int layout text_view_with_line_height_from_style 0x7f0e006d +int layout text_view_with_theme_line_height 0x7f0e006e +int layout text_view_without_line_height 0x7f0e006f +int plurals mtrl_badge_content_description 0x7f120001 +int string abc_action_bar_home_description 0x7f140001 +int string abc_action_bar_up_description 0x7f140002 +int string abc_action_menu_overflow_description 0x7f140003 +int string abc_action_mode_done 0x7f140004 +int string abc_activity_chooser_view_see_all 0x7f140005 +int string abc_activitychooserview_choose_application 0x7f140006 +int string abc_capital_off 0x7f140007 +int string abc_capital_on 0x7f140008 +int string abc_menu_alt_shortcut_label 0x7f140009 +int string abc_menu_ctrl_shortcut_label 0x7f14000a +int string abc_menu_delete_shortcut_label 0x7f14000b +int string abc_menu_enter_shortcut_label 0x7f14000c +int string abc_menu_function_shortcut_label 0x7f14000d +int string abc_menu_meta_shortcut_label 0x7f14000e +int string abc_menu_shift_shortcut_label 0x7f14000f +int string abc_menu_space_shortcut_label 0x7f140010 +int string abc_menu_sym_shortcut_label 0x7f140011 +int string abc_prepend_shortcut_label 0x7f140012 +int string abc_search_hint 0x7f140013 +int string abc_searchview_description_clear 0x7f140014 +int string abc_searchview_description_query 0x7f140015 +int string abc_searchview_description_search 0x7f140016 +int string abc_searchview_description_submit 0x7f140017 +int string abc_searchview_description_voice 0x7f140018 +int string abc_shareactionprovider_share_with 0x7f140019 +int string abc_shareactionprovider_share_with_application 0x7f14001a +int string abc_toolbar_collapse_description 0x7f14001b +int string app_name 0x7f14001c +int string appbar_scrolling_view_behavior 0x7f14001d +int string bottom_sheet_behavior 0x7f14001e +int string bottomsheet_action_expand_halfway 0x7f14001f +int string character_counter_content_description 0x7f140020 +int string character_counter_overflowed_content_description 0x7f140021 +int string character_counter_pattern 0x7f140022 +int string chip_text 0x7f140023 +int string clear_text_end_icon_content_description 0x7f140024 +int string error_icon_content_description 0x7f140025 +int string exposed_dropdown_menu_content_description 0x7f140026 +int string fab_transformation_scrim_behavior 0x7f140027 +int string fab_transformation_sheet_behavior 0x7f140028 +int string hide_bottom_view_on_scroll_behavior 0x7f140029 +int string icon_content_description 0x7f14002a +int string item_view_role_description 0x7f14002b +int string material_clock_display_divider 0x7f14002c +int string material_clock_toggle_content_description 0x7f14002d +int string material_hour_selection 0x7f14002e +int string material_hour_suffix 0x7f14002f +int string material_minute_selection 0x7f140030 +int string material_minute_suffix 0x7f140031 +int string material_slider_range_end 0x7f140032 +int string material_slider_range_start 0x7f140033 +int string material_timepicker_am 0x7f140034 +int string material_timepicker_clock_mode_description 0x7f140035 +int string material_timepicker_hour 0x7f140036 +int string material_timepicker_minute 0x7f140037 +int string material_timepicker_pm 0x7f140038 +int string material_timepicker_select_time 0x7f140039 +int string material_timepicker_text_input_mode_description 0x7f14003a +int string mtrl_badge_numberless_content_description 0x7f14003b +int string mtrl_chip_close_icon_content_description 0x7f14003c +int string mtrl_exceed_max_badge_number_content_description 0x7f14003d +int string mtrl_exceed_max_badge_number_suffix 0x7f14003e +int string mtrl_picker_a11y_next_month 0x7f14003f +int string mtrl_picker_a11y_prev_month 0x7f140040 +int string mtrl_picker_announce_current_selection 0x7f140041 +int string mtrl_picker_cancel 0x7f140042 +int string mtrl_picker_confirm 0x7f140043 +int string mtrl_picker_date_header_selected 0x7f140044 +int string mtrl_picker_date_header_title 0x7f140045 +int string mtrl_picker_date_header_unselected 0x7f140046 +int string mtrl_picker_day_of_week_column_header 0x7f140047 +int string mtrl_picker_invalid_format 0x7f140048 +int string mtrl_picker_invalid_format_example 0x7f140049 +int string mtrl_picker_invalid_format_use 0x7f14004a +int string mtrl_picker_invalid_range 0x7f14004b +int string mtrl_picker_navigate_to_year_description 0x7f14004c +int string mtrl_picker_out_of_range 0x7f14004d +int string mtrl_picker_range_header_only_end_selected 0x7f14004e +int string mtrl_picker_range_header_only_start_selected 0x7f14004f +int string mtrl_picker_range_header_selected 0x7f140050 +int string mtrl_picker_range_header_title 0x7f140051 +int string mtrl_picker_range_header_unselected 0x7f140052 +int string mtrl_picker_save 0x7f140053 +int string mtrl_picker_text_input_date_hint 0x7f140054 +int string mtrl_picker_text_input_date_range_end_hint 0x7f140055 +int string mtrl_picker_text_input_date_range_start_hint 0x7f140056 +int string mtrl_picker_text_input_day_abbr 0x7f140057 +int string mtrl_picker_text_input_month_abbr 0x7f140058 +int string mtrl_picker_text_input_year_abbr 0x7f140059 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f14005a +int string mtrl_picker_toggle_to_day_selection 0x7f14005b +int string mtrl_picker_toggle_to_text_input_mode 0x7f14005c +int string mtrl_picker_toggle_to_year_selection 0x7f14005d +int string password_toggle_content_description 0x7f14005e +int string path_password_eye 0x7f14005f +int string path_password_eye_mask_strike_through 0x7f140060 +int string path_password_eye_mask_visible 0x7f140061 +int string path_password_strike_through 0x7f140062 +int string search_menu_title 0x7f140063 +int string status_bar_notification_info_overflow 0x7f140064 +int style AlertDialog_AppCompat 0x7f150001 +int style AlertDialog_AppCompat_Light 0x7f150002 +int style AndroidThemeColorAccentYellow 0x7f150003 +int style Animation_AppCompat_Dialog 0x7f150004 +int style Animation_AppCompat_DropDownUp 0x7f150005 +int style Animation_AppCompat_Tooltip 0x7f150006 +int style Animation_Design_BottomSheetDialog 0x7f150007 +int style Animation_MaterialComponents_BottomSheetDialog 0x7f150008 +int style Base_AlertDialog_AppCompat 0x7f150009 +int style Base_AlertDialog_AppCompat_Light 0x7f15000a +int style Base_Animation_AppCompat_Dialog 0x7f15000b +int style Base_Animation_AppCompat_DropDownUp 0x7f15000c +int style Base_Animation_AppCompat_Tooltip 0x7f15000d +int style Base_CardView 0x7f15000e +int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000f +int style Base_DialogWindowTitle_AppCompat 0x7f150010 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f150011 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f150012 +int style Base_MaterialAlertDialog_MaterialComponents_Title_Text 0x7f150013 +int style Base_TextAppearance_AppCompat 0x7f150014 +int style Base_TextAppearance_AppCompat_Body1 0x7f150015 +int style Base_TextAppearance_AppCompat_Body2 0x7f150016 +int style Base_TextAppearance_AppCompat_Button 0x7f150017 +int style Base_TextAppearance_AppCompat_Caption 0x7f150018 +int style Base_TextAppearance_AppCompat_Display1 0x7f150019 +int style Base_TextAppearance_AppCompat_Display2 0x7f15001a +int style Base_TextAppearance_AppCompat_Display3 0x7f15001b +int style Base_TextAppearance_AppCompat_Display4 0x7f15001c +int style Base_TextAppearance_AppCompat_Headline 0x7f15001d +int style Base_TextAppearance_AppCompat_Inverse 0x7f15001e +int style Base_TextAppearance_AppCompat_Large 0x7f15001f +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150020 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f150021 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f150022 +int style Base_TextAppearance_AppCompat_Medium 0x7f150023 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f150024 +int style Base_TextAppearance_AppCompat_Menu 0x7f150025 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f150026 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150027 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150028 +int style Base_TextAppearance_AppCompat_Small 0x7f150029 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f15002a +int style Base_TextAppearance_AppCompat_Subhead 0x7f15002b +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f15002c +int style Base_TextAppearance_AppCompat_Title 0x7f15002d +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f15002e +int style Base_TextAppearance_AppCompat_Tooltip 0x7f15002f +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150030 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150039 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f15003a +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f15003b +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f15003c +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f15003d +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f15003e +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f15003f +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150040 +int style Base_TextAppearance_MaterialComponents_Badge 0x7f150041 +int style Base_TextAppearance_MaterialComponents_Button 0x7f150042 +int style Base_TextAppearance_MaterialComponents_Headline6 0x7f150043 +int style Base_TextAppearance_MaterialComponents_Subtitle2 0x7f150044 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150045 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150046 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150047 +int style Base_ThemeOverlay_AppCompat 0x7f150048 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f150049 +int style Base_ThemeOverlay_AppCompat_Dark 0x7f15004a +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f15004b +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f15004c +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f15004d +int style Base_ThemeOverlay_AppCompat_Light 0x7f15004e +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f15004f +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150050 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f150051 +int style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f150052 +int style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f150053 +int style Base_Theme_AppCompat 0x7f150054 +int style Base_Theme_AppCompat_CompactMenu 0x7f150055 +int style Base_Theme_AppCompat_Dialog 0x7f150056 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150057 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f150058 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f150059 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15005a +int style Base_Theme_AppCompat_Light 0x7f15005b +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15005c +int style Base_Theme_AppCompat_Light_Dialog 0x7f15005d +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15005e +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f15005f +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150060 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150061 +int style Base_Theme_MaterialComponents 0x7f150062 +int style Base_Theme_MaterialComponents_Bridge 0x7f150063 +int style Base_Theme_MaterialComponents_CompactMenu 0x7f150064 +int style Base_Theme_MaterialComponents_Dialog 0x7f150065 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f150066 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f150067 +int style Base_Theme_MaterialComponents_Dialog_Bridge 0x7f150068 +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f150069 +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f15006a +int style Base_Theme_MaterialComponents_Light 0x7f15006b +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f15006c +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f15006d +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f15006e +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f15006f +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f150070 +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f150071 +int style Base_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150072 +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f150073 +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f150074 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f150075 +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f150076 +int style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f150077 +int style Base_V14_Theme_MaterialComponents 0x7f150078 +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f150079 +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f15007a +int style Base_V14_Theme_MaterialComponents_Dialog_Bridge 0x7f15007b +int style Base_V14_Theme_MaterialComponents_Light 0x7f15007c +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f15007d +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f15007e +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f15007f +int style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge 0x7f150080 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150081 +int style Base_V21_Theme_AppCompat 0x7f150082 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150083 +int style Base_V21_Theme_AppCompat_Light 0x7f150084 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150085 +int style Base_V21_Theme_MaterialComponents 0x7f150086 +int style Base_V21_Theme_MaterialComponents_Dialog 0x7f150087 +int style Base_V21_Theme_MaterialComponents_Light 0x7f150088 +int style Base_V21_Theme_MaterialComponents_Light_Dialog 0x7f150089 +int style Base_V22_Theme_AppCompat 0x7f15008a +int style Base_V22_Theme_AppCompat_Light 0x7f15008b +int style Base_V23_Theme_AppCompat 0x7f15008c +int style Base_V23_Theme_AppCompat_Light 0x7f15008d +int style Base_V26_Theme_AppCompat 0x7f15008e +int style Base_V26_Theme_AppCompat_Light 0x7f15008f +int style Base_V26_Widget_AppCompat_Toolbar 0x7f150090 +int style Base_V28_Theme_AppCompat 0x7f150091 +int style Base_V28_Theme_AppCompat_Light 0x7f150092 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150093 +int style Base_V7_Theme_AppCompat 0x7f150094 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150095 +int style Base_V7_Theme_AppCompat_Light 0x7f150096 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150097 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150098 +int style Base_V7_Widget_AppCompat_EditText 0x7f150099 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f15009a +int style Base_Widget_AppCompat_ActionBar 0x7f15009b +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f15009c +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15009d +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15009e +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15009f +int style Base_Widget_AppCompat_ActionButton 0x7f1500a0 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f1500a1 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f1500a2 +int style Base_Widget_AppCompat_ActionMode 0x7f1500a3 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f1500a4 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f1500a5 +int style Base_Widget_AppCompat_Button 0x7f1500a6 +int style Base_Widget_AppCompat_ButtonBar 0x7f1500a7 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f1500a8 +int style Base_Widget_AppCompat_Button_Borderless 0x7f1500a9 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f1500aa +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f1500ab +int style Base_Widget_AppCompat_Button_Colored 0x7f1500ac +int style Base_Widget_AppCompat_Button_Small 0x7f1500ad +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f1500ae +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f1500af +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f1500b0 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f1500b1 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f1500b2 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f1500b3 +int style Base_Widget_AppCompat_EditText 0x7f1500b4 +int style Base_Widget_AppCompat_ImageButton 0x7f1500b5 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f1500b6 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f1500b7 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f1500b8 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f1500b9 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f1500ba +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f1500bb +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f1500bc +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f1500bd +int style Base_Widget_AppCompat_ListMenuView 0x7f1500be +int style Base_Widget_AppCompat_ListPopupWindow 0x7f1500bf +int style Base_Widget_AppCompat_ListView 0x7f1500c0 +int style Base_Widget_AppCompat_ListView_DropDown 0x7f1500c1 +int style Base_Widget_AppCompat_ListView_Menu 0x7f1500c2 +int style Base_Widget_AppCompat_PopupMenu 0x7f1500c3 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f1500c4 +int style Base_Widget_AppCompat_PopupWindow 0x7f1500c5 +int style Base_Widget_AppCompat_ProgressBar 0x7f1500c6 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f1500c7 +int style Base_Widget_AppCompat_RatingBar 0x7f1500c8 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f1500c9 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f1500ca +int style Base_Widget_AppCompat_SearchView 0x7f1500cb +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f1500cc +int style Base_Widget_AppCompat_SeekBar 0x7f1500cd +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f1500ce +int style Base_Widget_AppCompat_Spinner 0x7f1500cf +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f1500d0 +int style Base_Widget_AppCompat_TextView 0x7f1500d1 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500d2 +int style Base_Widget_AppCompat_Toolbar 0x7f1500d3 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500d4 +int style Base_Widget_Design_TabLayout 0x7f1500d5 +int style Base_Widget_MaterialComponents_AutoCompleteTextView 0x7f1500d6 +int style Base_Widget_MaterialComponents_CheckedTextView 0x7f1500d7 +int style Base_Widget_MaterialComponents_Chip 0x7f1500d8 +int style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton 0x7f1500d9 +int style Base_Widget_MaterialComponents_PopupMenu 0x7f1500da +int style Base_Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1500db +int style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1500dc +int style Base_Widget_MaterialComponents_PopupMenu_Overflow 0x7f1500dd +int style Base_Widget_MaterialComponents_Slider 0x7f1500de +int style Base_Widget_MaterialComponents_Snackbar 0x7f1500df +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f1500e0 +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f1500e1 +int style Base_Widget_MaterialComponents_TextView 0x7f1500e2 +int style CardView 0x7f1500e3 +int style CardView_Dark 0x7f1500e4 +int style CardView_Light 0x7f1500e5 +int style EmptyTheme 0x7f1500e6 +int style MaterialAlertDialog_MaterialComponents 0x7f1500e7 +int style MaterialAlertDialog_MaterialComponents_Body_Text 0x7f1500e8 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar 0x7f1500e9 +int style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner 0x7f1500ea +int style MaterialAlertDialog_MaterialComponents_Title_Icon 0x7f1500eb +int style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked 0x7f1500ec +int style MaterialAlertDialog_MaterialComponents_Title_Panel 0x7f1500ed +int style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked 0x7f1500ee +int style MaterialAlertDialog_MaterialComponents_Title_Text 0x7f1500ef +int style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked 0x7f1500f0 +int style Platform_AppCompat 0x7f1500f1 +int style Platform_AppCompat_Light 0x7f1500f2 +int style Platform_MaterialComponents 0x7f1500f3 +int style Platform_MaterialComponents_Dialog 0x7f1500f4 +int style Platform_MaterialComponents_Light 0x7f1500f5 +int style Platform_MaterialComponents_Light_Dialog 0x7f1500f6 +int style Platform_ThemeOverlay_AppCompat 0x7f1500f7 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500f8 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500f9 +int style Platform_V21_AppCompat 0x7f1500fa +int style Platform_V21_AppCompat_Light 0x7f1500fb +int style Platform_V25_AppCompat 0x7f1500fc +int style Platform_V25_AppCompat_Light 0x7f1500fd +int style Platform_Widget_AppCompat_Spinner 0x7f1500fe +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500ff +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f150100 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f150101 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f150102 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f150103 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f150104 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f150105 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f150106 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f150107 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f150108 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f150109 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f15010a +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f15010b +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f15010c +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f15010d +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f15010e +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f15010f +int style ShapeAppearanceOverlay 0x7f150110 +int style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize 0x7f150111 +int style ShapeAppearanceOverlay_BottomRightCut 0x7f150112 +int style ShapeAppearanceOverlay_Cut 0x7f150113 +int style ShapeAppearanceOverlay_DifferentCornerSize 0x7f150114 +int style ShapeAppearanceOverlay_MaterialComponents_BottomSheet 0x7f150115 +int style ShapeAppearanceOverlay_MaterialComponents_Chip 0x7f150116 +int style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton 0x7f150117 +int style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton 0x7f150118 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f150119 +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen 0x7f15011a +int style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year 0x7f15011b +int style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox 0x7f15011c +int style ShapeAppearanceOverlay_TopLeftCut 0x7f15011d +int style ShapeAppearanceOverlay_TopRightDifferentCornerSize 0x7f15011e +int style ShapeAppearance_MaterialComponents 0x7f15011f +int style ShapeAppearance_MaterialComponents_LargeComponent 0x7f150120 +int style ShapeAppearance_MaterialComponents_MediumComponent 0x7f150121 +int style ShapeAppearance_MaterialComponents_SmallComponent 0x7f150122 +int style ShapeAppearance_MaterialComponents_Test 0x7f150123 +int style ShapeAppearance_MaterialComponents_Tooltip 0x7f150124 +int style TestStyleWithLineHeight 0x7f150125 +int style TestStyleWithLineHeightAppearance 0x7f150126 +int style TestStyleWithThemeLineHeightAttribute 0x7f150127 +int style TestStyleWithoutLineHeight 0x7f150128 +int style TestThemeWithLineHeight 0x7f150129 +int style TestThemeWithLineHeightDisabled 0x7f15012a +int style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day 0x7f15012b +int style Test_Theme_MaterialComponents_MaterialCalendar 0x7f15012c +int style Test_Widget_MaterialComponents_MaterialCalendar 0x7f15012d +int style Test_Widget_MaterialComponents_MaterialCalendar_Day 0x7f15012e +int style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f15012f +int style TextAppearance_AppCompat 0x7f150130 +int style TextAppearance_AppCompat_Body1 0x7f150131 +int style TextAppearance_AppCompat_Body2 0x7f150132 +int style TextAppearance_AppCompat_Button 0x7f150133 +int style TextAppearance_AppCompat_Caption 0x7f150134 +int style TextAppearance_AppCompat_Display1 0x7f150135 +int style TextAppearance_AppCompat_Display2 0x7f150136 +int style TextAppearance_AppCompat_Display3 0x7f150137 +int style TextAppearance_AppCompat_Display4 0x7f150138 +int style TextAppearance_AppCompat_Headline 0x7f150139 +int style TextAppearance_AppCompat_Inverse 0x7f15013a +int style TextAppearance_AppCompat_Large 0x7f15013b +int style TextAppearance_AppCompat_Large_Inverse 0x7f15013c +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f15013d +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f15013e +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15013f +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f150140 +int style TextAppearance_AppCompat_Medium 0x7f150141 +int style TextAppearance_AppCompat_Medium_Inverse 0x7f150142 +int style TextAppearance_AppCompat_Menu 0x7f150143 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150144 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f150145 +int style TextAppearance_AppCompat_Small 0x7f150146 +int style TextAppearance_AppCompat_Small_Inverse 0x7f150147 +int style TextAppearance_AppCompat_Subhead 0x7f150148 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f150149 +int style TextAppearance_AppCompat_Title 0x7f15014a +int style TextAppearance_AppCompat_Title_Inverse 0x7f15014b +int style TextAppearance_AppCompat_Tooltip 0x7f15014c +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15014d +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15014e +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15014f +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f150150 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f150151 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150152 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f150153 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150154 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f150155 +int style TextAppearance_AppCompat_Widget_Button 0x7f150156 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150157 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150158 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150159 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f15015a +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f15015b +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f15015c +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f15015d +int style TextAppearance_AppCompat_Widget_Switch 0x7f15015e +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15015f +int style TextAppearance_Compat_Notification 0x7f150160 +int style TextAppearance_Compat_Notification_Info 0x7f150161 +int style TextAppearance_Compat_Notification_Line2 0x7f150162 +int style TextAppearance_Compat_Notification_Time 0x7f150163 +int style TextAppearance_Compat_Notification_Title 0x7f150164 +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f150165 +int style TextAppearance_Design_Counter 0x7f150166 +int style TextAppearance_Design_Counter_Overflow 0x7f150167 +int style TextAppearance_Design_Error 0x7f150168 +int style TextAppearance_Design_HelperText 0x7f150169 +int style TextAppearance_Design_Hint 0x7f15016a +int style TextAppearance_Design_Placeholder 0x7f15016b +int style TextAppearance_Design_Prefix 0x7f15016c +int style TextAppearance_Design_Snackbar_Message 0x7f15016d +int style TextAppearance_Design_Suffix 0x7f15016e +int style TextAppearance_Design_Tab 0x7f15016f +int style TextAppearance_MaterialComponents_Badge 0x7f150170 +int style TextAppearance_MaterialComponents_Body1 0x7f150171 +int style TextAppearance_MaterialComponents_Body2 0x7f150172 +int style TextAppearance_MaterialComponents_Button 0x7f150173 +int style TextAppearance_MaterialComponents_Caption 0x7f150174 +int style TextAppearance_MaterialComponents_Chip 0x7f150175 +int style TextAppearance_MaterialComponents_Headline1 0x7f150176 +int style TextAppearance_MaterialComponents_Headline2 0x7f150177 +int style TextAppearance_MaterialComponents_Headline3 0x7f150178 +int style TextAppearance_MaterialComponents_Headline4 0x7f150179 +int style TextAppearance_MaterialComponents_Headline5 0x7f15017a +int style TextAppearance_MaterialComponents_Headline6 0x7f15017b +int style TextAppearance_MaterialComponents_Overline 0x7f15017c +int style TextAppearance_MaterialComponents_Subtitle1 0x7f15017d +int style TextAppearance_MaterialComponents_Subtitle2 0x7f15017e +int style TextAppearance_MaterialComponents_TimePicker_Title 0x7f15017f +int style TextAppearance_MaterialComponents_Tooltip 0x7f150180 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150181 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150182 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150183 +int style ThemeOverlayColorAccentRed 0x7f150184 +int style ThemeOverlay_AppCompat 0x7f150185 +int style ThemeOverlay_AppCompat_ActionBar 0x7f150186 +int style ThemeOverlay_AppCompat_Dark 0x7f150187 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150188 +int style ThemeOverlay_AppCompat_DayNight 0x7f150189 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f15018a +int style ThemeOverlay_AppCompat_Dialog 0x7f15018b +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f15018c +int style ThemeOverlay_AppCompat_Light 0x7f15018d +int style ThemeOverlay_Design_TextInputEditText 0x7f15018e +int style ThemeOverlay_MaterialComponents 0x7f15018f +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f150190 +int style ThemeOverlay_MaterialComponents_ActionBar_Primary 0x7f150191 +int style ThemeOverlay_MaterialComponents_ActionBar_Surface 0x7f150192 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView 0x7f150193 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f150194 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f150195 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f150196 +int style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f150197 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Primary 0x7f150198 +int style ThemeOverlay_MaterialComponents_BottomAppBar_Surface 0x7f150199 +int style ThemeOverlay_MaterialComponents_BottomSheetDialog 0x7f15019a +int style ThemeOverlay_MaterialComponents_Dark 0x7f15019b +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f15019c +int style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog 0x7f15019d +int style ThemeOverlay_MaterialComponents_Dialog 0x7f15019e +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f15019f +int style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework 0x7f1501a0 +int style ThemeOverlay_MaterialComponents_Light 0x7f1501a1 +int style ThemeOverlay_MaterialComponents_Light_BottomSheetDialog 0x7f1501a2 +int style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework 0x7f1501a3 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog 0x7f1501a4 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered 0x7f1501a5 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date 0x7f1501a6 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar 0x7f1501a7 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text 0x7f1501a8 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day 0x7f1501a9 +int style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner 0x7f1501aa +int style ThemeOverlay_MaterialComponents_MaterialCalendar 0x7f1501ab +int style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen 0x7f1501ac +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f1501ad +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f1501ae +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1501af +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1501b0 +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1501b1 +int style ThemeOverlay_MaterialComponents_TimePicker 0x7f1501b2 +int style ThemeOverlay_MaterialComponents_TimePicker_Display 0x7f1501b3 +int style ThemeOverlay_MaterialComponents_Toolbar_Primary 0x7f1501b4 +int style ThemeOverlay_MaterialComponents_Toolbar_Surface 0x7f1501b5 +int style Theme_AppCompat 0x7f1501b6 +int style Theme_AppCompat_CompactMenu 0x7f1501b7 +int style Theme_AppCompat_DayNight 0x7f1501b8 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f1501b9 +int style Theme_AppCompat_DayNight_Dialog 0x7f1501ba +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f1501bb +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f1501bc +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f1501bd +int style Theme_AppCompat_DayNight_NoActionBar 0x7f1501be +int style Theme_AppCompat_Dialog 0x7f1501bf +int style Theme_AppCompat_DialogWhenLarge 0x7f1501c0 +int style Theme_AppCompat_Dialog_Alert 0x7f1501c1 +int style Theme_AppCompat_Dialog_MinWidth 0x7f1501c2 +int style Theme_AppCompat_Empty 0x7f1501c3 +int style Theme_AppCompat_Light 0x7f1501c4 +int style Theme_AppCompat_Light_DarkActionBar 0x7f1501c5 +int style Theme_AppCompat_Light_Dialog 0x7f1501c6 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f1501c7 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f1501c8 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f1501c9 +int style Theme_AppCompat_Light_NoActionBar 0x7f1501ca +int style Theme_AppCompat_NoActionBar 0x7f1501cb +int style Theme_Design 0x7f1501cc +int style Theme_Design_BottomSheetDialog 0x7f1501cd +int style Theme_Design_Light 0x7f1501ce +int style Theme_Design_Light_BottomSheetDialog 0x7f1501cf +int style Theme_Design_Light_NoActionBar 0x7f1501d0 +int style Theme_Design_NoActionBar 0x7f1501d1 +int style Theme_MaterialComponents 0x7f1501d2 +int style Theme_MaterialComponents_BottomSheetDialog 0x7f1501d3 +int style Theme_MaterialComponents_Bridge 0x7f1501d4 +int style Theme_MaterialComponents_CompactMenu 0x7f1501d5 +int style Theme_MaterialComponents_DayNight 0x7f1501d6 +int style Theme_MaterialComponents_DayNight_BottomSheetDialog 0x7f1501d7 +int style Theme_MaterialComponents_DayNight_Bridge 0x7f1501d8 +int style Theme_MaterialComponents_DayNight_DarkActionBar 0x7f1501d9 +int style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge 0x7f1501da +int style Theme_MaterialComponents_DayNight_Dialog 0x7f1501db +int style Theme_MaterialComponents_DayNight_DialogWhenLarge 0x7f1501dc +int style Theme_MaterialComponents_DayNight_Dialog_Alert 0x7f1501dd +int style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge 0x7f1501de +int style Theme_MaterialComponents_DayNight_Dialog_Bridge 0x7f1501df +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize 0x7f1501e0 +int style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge 0x7f1501e1 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth 0x7f1501e2 +int style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge 0x7f1501e3 +int style Theme_MaterialComponents_DayNight_NoActionBar 0x7f1501e4 +int style Theme_MaterialComponents_DayNight_NoActionBar_Bridge 0x7f1501e5 +int style Theme_MaterialComponents_Dialog 0x7f1501e6 +int style Theme_MaterialComponents_DialogWhenLarge 0x7f1501e7 +int style Theme_MaterialComponents_Dialog_Alert 0x7f1501e8 +int style Theme_MaterialComponents_Dialog_Alert_Bridge 0x7f1501e9 +int style Theme_MaterialComponents_Dialog_Bridge 0x7f1501ea +int style Theme_MaterialComponents_Dialog_FixedSize 0x7f1501eb +int style Theme_MaterialComponents_Dialog_FixedSize_Bridge 0x7f1501ec +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f1501ed +int style Theme_MaterialComponents_Dialog_MinWidth_Bridge 0x7f1501ee +int style Theme_MaterialComponents_Light 0x7f1501ef +int style Theme_MaterialComponents_Light_BarSize 0x7f1501f0 +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f1501f1 +int style Theme_MaterialComponents_Light_Bridge 0x7f1501f2 +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f1501f3 +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f1501f4 +int style Theme_MaterialComponents_Light_Dialog 0x7f1501f5 +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f1501f6 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f1501f7 +int style Theme_MaterialComponents_Light_Dialog_Alert_Bridge 0x7f1501f8 +int style Theme_MaterialComponents_Light_Dialog_Bridge 0x7f1501f9 +int style Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f1501fa +int style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge 0x7f1501fb +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f1501fc +int style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge 0x7f1501fd +int style Theme_MaterialComponents_Light_LargeTouch 0x7f1501fe +int style Theme_MaterialComponents_Light_NoActionBar 0x7f1501ff +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f150200 +int style Theme_MaterialComponents_NoActionBar 0x7f150201 +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f150202 +int style TransparentDialog 0x7f150203 +int style Widget_AppCompat_ActionBar 0x7f150204 +int style Widget_AppCompat_ActionBar_Solid 0x7f150205 +int style Widget_AppCompat_ActionBar_TabBar 0x7f150206 +int style Widget_AppCompat_ActionBar_TabText 0x7f150207 +int style Widget_AppCompat_ActionBar_TabView 0x7f150208 +int style Widget_AppCompat_ActionButton 0x7f150209 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f15020a +int style Widget_AppCompat_ActionButton_Overflow 0x7f15020b +int style Widget_AppCompat_ActionMode 0x7f15020c +int style Widget_AppCompat_ActivityChooserView 0x7f15020d +int style Widget_AppCompat_AutoCompleteTextView 0x7f15020e +int style Widget_AppCompat_Button 0x7f15020f +int style Widget_AppCompat_ButtonBar 0x7f150210 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150211 +int style Widget_AppCompat_Button_Borderless 0x7f150212 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f150213 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150214 +int style Widget_AppCompat_Button_Colored 0x7f150215 +int style Widget_AppCompat_Button_Small 0x7f150216 +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150217 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150218 +int style Widget_AppCompat_CompoundButton_Switch 0x7f150219 +int style Widget_AppCompat_DrawerArrowToggle 0x7f15021a +int style Widget_AppCompat_DropDownItem_Spinner 0x7f15021b +int style Widget_AppCompat_EditText 0x7f15021c +int style Widget_AppCompat_ImageButton 0x7f15021d +int style Widget_AppCompat_Light_ActionBar 0x7f15021e +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f15021f +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f150220 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f150221 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f150222 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150223 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150224 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f150225 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f150226 +int style Widget_AppCompat_Light_ActionButton 0x7f150227 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150228 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150229 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f15022a +int style Widget_AppCompat_Light_ActivityChooserView 0x7f15022b +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f15022c +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f15022d +int style Widget_AppCompat_Light_ListPopupWindow 0x7f15022e +int style Widget_AppCompat_Light_ListView_DropDown 0x7f15022f +int style Widget_AppCompat_Light_PopupMenu 0x7f150230 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150231 +int style Widget_AppCompat_Light_SearchView 0x7f150232 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150233 +int style Widget_AppCompat_ListMenuView 0x7f150234 +int style Widget_AppCompat_ListPopupWindow 0x7f150235 +int style Widget_AppCompat_ListView 0x7f150236 +int style Widget_AppCompat_ListView_DropDown 0x7f150237 +int style Widget_AppCompat_ListView_Menu 0x7f150238 +int style Widget_AppCompat_PopupMenu 0x7f150239 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f15023a +int style Widget_AppCompat_PopupWindow 0x7f15023b +int style Widget_AppCompat_ProgressBar 0x7f15023c +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f15023d +int style Widget_AppCompat_RatingBar 0x7f15023e +int style Widget_AppCompat_RatingBar_Indicator 0x7f15023f +int style Widget_AppCompat_RatingBar_Small 0x7f150240 +int style Widget_AppCompat_SearchView 0x7f150241 +int style Widget_AppCompat_SearchView_ActionBar 0x7f150242 +int style Widget_AppCompat_SeekBar 0x7f150243 +int style Widget_AppCompat_SeekBar_Discrete 0x7f150244 +int style Widget_AppCompat_Spinner 0x7f150245 +int style Widget_AppCompat_Spinner_DropDown 0x7f150246 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150247 +int style Widget_AppCompat_Spinner_Underlined 0x7f150248 +int style Widget_AppCompat_TextView 0x7f150249 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f15024a +int style Widget_AppCompat_Toolbar 0x7f15024b +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f15024c +int style Widget_Compat_NotificationActionContainer 0x7f15024d +int style Widget_Compat_NotificationActionText 0x7f15024e +int style Widget_Design_AppBarLayout 0x7f15024f +int style Widget_Design_BottomNavigationView 0x7f150250 +int style Widget_Design_BottomSheet_Modal 0x7f150251 +int style Widget_Design_CollapsingToolbar 0x7f150252 +int style Widget_Design_FloatingActionButton 0x7f150253 +int style Widget_Design_NavigationView 0x7f150254 +int style Widget_Design_ScrimInsetsFrameLayout 0x7f150255 +int style Widget_Design_Snackbar 0x7f150256 +int style Widget_Design_TabLayout 0x7f150257 +int style Widget_Design_TextInputEditText 0x7f150258 +int style Widget_Design_TextInputLayout 0x7f150259 +int style Widget_MaterialComponents_ActionBar_Primary 0x7f15025a +int style Widget_MaterialComponents_ActionBar_PrimarySurface 0x7f15025b +int style Widget_MaterialComponents_ActionBar_Solid 0x7f15025c +int style Widget_MaterialComponents_ActionBar_Surface 0x7f15025d +int style Widget_MaterialComponents_AppBarLayout_Primary 0x7f15025e +int style Widget_MaterialComponents_AppBarLayout_PrimarySurface 0x7f15025f +int style Widget_MaterialComponents_AppBarLayout_Surface 0x7f150260 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox 0x7f150261 +int style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense 0x7f150262 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox 0x7f150263 +int style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense 0x7f150264 +int style Widget_MaterialComponents_Badge 0x7f150265 +int style Widget_MaterialComponents_BottomAppBar 0x7f150266 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f150267 +int style Widget_MaterialComponents_BottomAppBar_PrimarySurface 0x7f150268 +int style Widget_MaterialComponents_BottomNavigationView 0x7f150269 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f15026a +int style Widget_MaterialComponents_BottomNavigationView_PrimarySurface 0x7f15026b +int style Widget_MaterialComponents_BottomSheet 0x7f15026c +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f15026d +int style Widget_MaterialComponents_Button 0x7f15026e +int style Widget_MaterialComponents_Button_Icon 0x7f15026f +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f150270 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f150271 +int style Widget_MaterialComponents_Button_TextButton 0x7f150272 +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f150273 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Flush 0x7f150274 +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f150275 +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f150276 +int style Widget_MaterialComponents_Button_TextButton_Snackbar 0x7f150277 +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f150278 +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f150279 +int style Widget_MaterialComponents_CardView 0x7f15027a +int style Widget_MaterialComponents_CheckedTextView 0x7f15027b +int style Widget_MaterialComponents_ChipGroup 0x7f15027c +int style Widget_MaterialComponents_Chip_Action 0x7f15027d +int style Widget_MaterialComponents_Chip_Choice 0x7f15027e +int style Widget_MaterialComponents_Chip_Entry 0x7f15027f +int style Widget_MaterialComponents_Chip_Filter 0x7f150280 +int style Widget_MaterialComponents_CircularProgressIndicator 0x7f150281 +int style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall 0x7f150282 +int style Widget_MaterialComponents_CircularProgressIndicator_Medium 0x7f150283 +int style Widget_MaterialComponents_CircularProgressIndicator_Small 0x7f150284 +int style Widget_MaterialComponents_CollapsingToolbar 0x7f150285 +int style Widget_MaterialComponents_CompoundButton_CheckBox 0x7f150286 +int style Widget_MaterialComponents_CompoundButton_RadioButton 0x7f150287 +int style Widget_MaterialComponents_CompoundButton_Switch 0x7f150288 +int style Widget_MaterialComponents_ExtendedFloatingActionButton 0x7f150289 +int style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon 0x7f15028a +int style Widget_MaterialComponents_FloatingActionButton 0x7f15028b +int style Widget_MaterialComponents_Light_ActionBar_Solid 0x7f15028c +int style Widget_MaterialComponents_LinearProgressIndicator 0x7f15028d +int style Widget_MaterialComponents_MaterialButtonToggleGroup 0x7f15028e +int style Widget_MaterialComponents_MaterialCalendar 0x7f15028f +int style Widget_MaterialComponents_MaterialCalendar_Day 0x7f150290 +int style Widget_MaterialComponents_MaterialCalendar_DayTextView 0x7f150291 +int style Widget_MaterialComponents_MaterialCalendar_Day_Invalid 0x7f150292 +int style Widget_MaterialComponents_MaterialCalendar_Day_Selected 0x7f150293 +int style Widget_MaterialComponents_MaterialCalendar_Day_Today 0x7f150294 +int style Widget_MaterialComponents_MaterialCalendar_Fullscreen 0x7f150295 +int style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton 0x7f150296 +int style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton 0x7f150297 +int style Widget_MaterialComponents_MaterialCalendar_HeaderDivider 0x7f150298 +int style Widget_MaterialComponents_MaterialCalendar_HeaderLayout 0x7f150299 +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection 0x7f15029a +int style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen 0x7f15029b +int style Widget_MaterialComponents_MaterialCalendar_HeaderTitle 0x7f15029c +int style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton 0x7f15029d +int style Widget_MaterialComponents_MaterialCalendar_Item 0x7f15029e +int style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton 0x7f15029f +int style Widget_MaterialComponents_MaterialCalendar_MonthTextView 0x7f1502a0 +int style Widget_MaterialComponents_MaterialCalendar_Year 0x7f1502a1 +int style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton 0x7f1502a2 +int style Widget_MaterialComponents_MaterialCalendar_Year_Selected 0x7f1502a3 +int style Widget_MaterialComponents_MaterialCalendar_Year_Today 0x7f1502a4 +int style Widget_MaterialComponents_NavigationView 0x7f1502a5 +int style Widget_MaterialComponents_PopupMenu 0x7f1502a6 +int style Widget_MaterialComponents_PopupMenu_ContextMenu 0x7f1502a7 +int style Widget_MaterialComponents_PopupMenu_ListPopupWindow 0x7f1502a8 +int style Widget_MaterialComponents_PopupMenu_Overflow 0x7f1502a9 +int style Widget_MaterialComponents_ProgressIndicator 0x7f1502aa +int style Widget_MaterialComponents_ShapeableImageView 0x7f1502ab +int style Widget_MaterialComponents_Slider 0x7f1502ac +int style Widget_MaterialComponents_Snackbar 0x7f1502ad +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f1502ae +int style Widget_MaterialComponents_Snackbar_TextView 0x7f1502af +int style Widget_MaterialComponents_TabLayout 0x7f1502b0 +int style Widget_MaterialComponents_TabLayout_Colored 0x7f1502b1 +int style Widget_MaterialComponents_TabLayout_PrimarySurface 0x7f1502b2 +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f1502b3 +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f1502b4 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f1502b5 +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f1502b6 +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f1502b7 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f1502b8 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu 0x7f1502b9 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu 0x7f1502ba +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f1502bb +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f1502bc +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu 0x7f1502bd +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu 0x7f1502be +int style Widget_MaterialComponents_TextView 0x7f1502bf +int style Widget_MaterialComponents_TimePicker 0x7f1502c0 +int style Widget_MaterialComponents_TimePicker_Button 0x7f1502c1 +int style Widget_MaterialComponents_TimePicker_Clock 0x7f1502c2 +int style Widget_MaterialComponents_TimePicker_Display 0x7f1502c3 +int style Widget_MaterialComponents_TimePicker_Display_TextInputEditText 0x7f1502c4 +int style Widget_MaterialComponents_TimePicker_ImageButton 0x7f1502c5 +int style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance 0x7f1502c6 +int style Widget_MaterialComponents_Toolbar 0x7f1502c7 +int style Widget_MaterialComponents_Toolbar_Primary 0x7f1502c8 +int style Widget_MaterialComponents_Toolbar_PrimarySurface 0x7f1502c9 +int style Widget_MaterialComponents_Toolbar_Surface 0x7f1502ca +int style Widget_MaterialComponents_Tooltip 0x7f1502cb +int style Widget_Support_CoordinatorLayout 0x7f1502cc +int[] styleable ActionBar { 0x7f04003b, 0x7f040042, 0x7f040043, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400fc, 0x7f04010c, 0x7f04010d, 0x7f040125, 0x7f040178, 0x7f04017f, 0x7f040185, 0x7f040186, 0x7f040189, 0x7f040194, 0x7f0401a6, 0x7f040213, 0x7f040254, 0x7f04027f, 0x7f040286, 0x7f040287, 0x7f0402d4, 0x7f0402d7, 0x7f040331, 0x7f04033b } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f04003b, 0x7f040042, 0x7f0400ac, 0x7f040178, 0x7f0402d7, 0x7f04033b } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040138, 0x7f04019a } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040071, 0x7f040072, 0x7f040208, 0x7f040209, 0x7f040250, 0x7f0402b0, 0x7f0402b2 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x10100d4, 0x1010540, 0x101048f, 0x7f040125, 0x7f040139, 0x7f0401fe, 0x7f0401ff, 0x7f0402ce } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollTargetViewId 6 +int styleable AppBarLayout_statusBarForeground 7 +int[] styleable AppBarLayoutStates { 0x7f0402c8, 0x7f0402c9, 0x7f0402cb, 0x7f0402cc } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f0401fc, 0x7f0401fd } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x1010119, 0x7f0402bf, 0x7f04032f, 0x7f040330 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f04032b, 0x7f04032c, 0x7f04032d } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f040035, 0x7f040036, 0x7f040037, 0x7f040038, 0x7f040039, 0x7f040115, 0x7f040116, 0x7f040117, 0x7f040118, 0x7f04011a, 0x7f04011b, 0x7f04011c, 0x7f04011d, 0x7f040150, 0x7f040166, 0x7f04016e, 0x7f0401bc, 0x7f040201, 0x7f0402ff, 0x7f04031b } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x10100ae, 0x1010057, 0x7f040034, 0x7f040059, 0x7f04006a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f040073, 0x7f040074, 0x7f040080, 0x7f040089, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400ba, 0x7f0400c1, 0x7f0400c2, 0x7f0400c8, 0x7f0400e0, 0x7f040109, 0x7f04010a, 0x7f04010b, 0x7f04010e, 0x7f040110, 0x7f04011f, 0x7f040120, 0x7f040122, 0x7f040123, 0x7f040124, 0x7f040185, 0x7f040192, 0x7f040204, 0x7f040205, 0x7f040206, 0x7f040207, 0x7f04020a, 0x7f04020b, 0x7f04020c, 0x7f04020d, 0x7f04020e, 0x7f04020f, 0x7f040210, 0x7f040211, 0x7f040212, 0x7f040269, 0x7f04026a, 0x7f04026b, 0x7f04027e, 0x7f040280, 0x7f04028a, 0x7f04028c, 0x7f04028d, 0x7f04028e, 0x7f04029e, 0x7f04029f, 0x7f0402a0, 0x7f0402a1, 0x7f0402bc, 0x7f0402bd, 0x7f0402de, 0x7f04030a, 0x7f04030c, 0x7f04030d, 0x7f04030e, 0x7f040310, 0x7f040311, 0x7f040312, 0x7f040313, 0x7f040316, 0x7f040317, 0x7f04033d, 0x7f04033e, 0x7f04033f, 0x7f040340, 0x7f04035c, 0x7f040365, 0x7f040366, 0x7f040367, 0x7f040368, 0x7f040369, 0x7f04036a, 0x7f04036b, 0x7f04036c, 0x7f04036d, 0x7f04036e } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseDrawable 17 +int styleable AppCompatTheme_actionModeCopyDrawable 18 +int styleable AppCompatTheme_actionModeCutDrawable 19 +int styleable AppCompatTheme_actionModeFindDrawable 20 +int styleable AppCompatTheme_actionModePasteDrawable 21 +int styleable AppCompatTheme_actionModePopupWindowStyle 22 +int styleable AppCompatTheme_actionModeSelectAllDrawable 23 +int styleable AppCompatTheme_actionModeShareDrawable 24 +int styleable AppCompatTheme_actionModeSplitBackground 25 +int styleable AppCompatTheme_actionModeStyle 26 +int styleable AppCompatTheme_actionModeWebSearchDrawable 27 +int styleable AppCompatTheme_actionOverflowButtonStyle 28 +int styleable AppCompatTheme_actionOverflowMenuStyle 29 +int styleable AppCompatTheme_activityChooserViewStyle 30 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 +int styleable AppCompatTheme_alertDialogCenterButtons 32 +int styleable AppCompatTheme_alertDialogStyle 33 +int styleable AppCompatTheme_alertDialogTheme 34 +int styleable AppCompatTheme_android_windowAnimationStyle 35 +int styleable AppCompatTheme_android_windowIsFloating 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 72 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 73 +int styleable AppCompatTheme_listDividerAlertDialog 74 +int styleable AppCompatTheme_listMenuViewStyle 75 +int styleable AppCompatTheme_listPopupWindowStyle 76 +int styleable AppCompatTheme_listPreferredItemHeight 77 +int styleable AppCompatTheme_listPreferredItemHeightLarge 78 +int styleable AppCompatTheme_listPreferredItemHeightSmall 79 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 80 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 81 +int styleable AppCompatTheme_listPreferredItemPaddingRight 82 +int styleable AppCompatTheme_listPreferredItemPaddingStart 83 +int styleable AppCompatTheme_panelBackground 84 +int styleable AppCompatTheme_panelMenuListTheme 85 +int styleable AppCompatTheme_panelMenuListWidth 86 +int styleable AppCompatTheme_popupMenuStyle 87 +int styleable AppCompatTheme_popupWindowStyle 88 +int styleable AppCompatTheme_radioButtonStyle 89 +int styleable AppCompatTheme_ratingBarStyle 90 +int styleable AppCompatTheme_ratingBarStyleIndicator 91 +int styleable AppCompatTheme_ratingBarStyleSmall 92 +int styleable AppCompatTheme_searchViewStyle 93 +int styleable AppCompatTheme_seekBarStyle 94 +int styleable AppCompatTheme_selectableItemBackground 95 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 96 +int styleable AppCompatTheme_spinnerDropDownItemStyle 97 +int styleable AppCompatTheme_spinnerStyle 98 +int styleable AppCompatTheme_switchStyle 99 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 100 +int styleable AppCompatTheme_textAppearanceListItem 101 +int styleable AppCompatTheme_textAppearanceListItemSecondary 102 +int styleable AppCompatTheme_textAppearanceListItemSmall 103 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 104 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 105 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 106 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 107 +int styleable AppCompatTheme_textColorAlertDialogListItem 108 +int styleable AppCompatTheme_textColorSearchUrl 109 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 110 +int styleable AppCompatTheme_toolbarStyle 111 +int styleable AppCompatTheme_tooltipForegroundColor 112 +int styleable AppCompatTheme_tooltipFrameBackground 113 +int styleable AppCompatTheme_viewInflaterClass 114 +int styleable AppCompatTheme_windowActionBar 115 +int styleable AppCompatTheme_windowActionBarOverlay 116 +int styleable AppCompatTheme_windowActionModeOverlay 117 +int styleable AppCompatTheme_windowFixedHeightMajor 118 +int styleable AppCompatTheme_windowFixedHeightMinor 119 +int styleable AppCompatTheme_windowFixedWidthMajor 120 +int styleable AppCompatTheme_windowFixedWidthMinor 121 +int styleable AppCompatTheme_windowMinWidthMajor 122 +int styleable AppCompatTheme_windowMinWidthMinor 123 +int styleable AppCompatTheme_windowNoTitle 124 +int[] styleable Badge { 0x7f04003c, 0x7f040046, 0x7f040048, 0x7f040187, 0x7f040234, 0x7f040258, 0x7f04035b } +int styleable Badge_backgroundColor 0 +int styleable Badge_badgeGravity 1 +int styleable Badge_badgeTextColor 2 +int styleable Badge_horizontalOffset 3 +int styleable Badge_maxCharacterCount 4 +int styleable Badge_number 5 +int styleable Badge_verticalOffset 6 +int[] styleable BaseProgressIndicator { 0x1010139, 0x7f04017d, 0x7f040195, 0x7f04023d, 0x7f0402a9, 0x7f0402ab, 0x7f040347, 0x7f04034a, 0x7f04034c } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x7f040044, 0x7f040125, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f040180, 0x7f040263, 0x7f040265, 0x7f040266 } +int styleable BottomAppBar_backgroundTint 0 +int styleable BottomAppBar_elevation 1 +int styleable BottomAppBar_fabAlignmentMode 2 +int styleable BottomAppBar_fabAnimationMode 3 +int styleable BottomAppBar_fabCradleMargin 4 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 5 +int styleable BottomAppBar_fabCradleVerticalOffset 6 +int styleable BottomAppBar_hideOnScroll 7 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 8 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 9 +int styleable BottomAppBar_paddingRightSystemWindowInsets 10 +int[] styleable BottomNavigationView { 0x7f040044, 0x7f040125, 0x7f04019e, 0x7f0401a1, 0x7f0401a3, 0x7f0401a4, 0x7f0401a7, 0x7f0401b3, 0x7f0401b4, 0x7f0401b5, 0x7f0401bb, 0x7f04023b } +int styleable BottomNavigationView_backgroundTint 0 +int styleable BottomNavigationView_elevation 1 +int styleable BottomNavigationView_itemBackground 2 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 3 +int styleable BottomNavigationView_itemIconSize 4 +int styleable BottomNavigationView_itemIconTint 5 +int styleable BottomNavigationView_itemRippleColor 6 +int styleable BottomNavigationView_itemTextAppearanceActive 7 +int styleable BottomNavigationView_itemTextAppearanceInactive 8 +int styleable BottomNavigationView_itemTextColor 9 +int styleable BottomNavigationView_labelVisibilityMode 10 +int styleable BottomNavigationView_menu 11 +int[] styleable BottomSheetBehavior_Layout { 0x1010440, 0x7f040044, 0x7f04004f, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040055, 0x7f040056, 0x7f040057, 0x7f040173, 0x7f0402a4, 0x7f0402a7 } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_backgroundTint 1 +int styleable BottomSheetBehavior_Layout_behavior_draggable 2 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 3 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 4 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 5 +int styleable BottomSheetBehavior_Layout_behavior_hideable 6 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 7 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 8 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 9 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 10 +int styleable BottomSheetBehavior_Layout_shapeAppearance 11 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 12 +int[] styleable ButtonBarLayout { 0x7f040028 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CardView { 0x1010140, 0x101013f, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f0400d7, 0x7f0400d8, 0x7f0400da, 0x7f0400db, 0x7f0400dd } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Chip { 0x10101e5, 0x10100ab, 0x101011f, 0x101014f, 0x1010034, 0x1010098, 0x1010095, 0x7f040083, 0x7f040084, 0x7f040087, 0x7f040088, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04009d, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f040130, 0x7f04017e, 0x7f04018a, 0x7f04018e, 0x7f040295, 0x7f0402a4, 0x7f0402a7, 0x7f0402ad, 0x7f040318, 0x7f04031c } +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable ChipGroup { 0x7f040082, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f0402a2, 0x7f0402b3, 0x7f0402b4 } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int[] styleable CircularProgressIndicator { 0x7f040196, 0x7f040198, 0x7f040199 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0400a1, 0x7f0400a4 } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0400a2, 0x7f04022c, 0x7f0402a3 } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0400b0, 0x7f0400b1, 0x7f0400de, 0x7f04013b, 0x7f04013c, 0x7f04013d, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040237, 0x7f040299, 0x7f04029b, 0x7f0402cf, 0x7f040331, 0x7f040332, 0x7f04033c } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_contentScrim 2 +int styleable CollapsingToolbarLayout_expandedTitleGravity 3 +int styleable CollapsingToolbarLayout_expandedTitleMargin 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 +int styleable CollapsingToolbarLayout_maxLines 10 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 11 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 12 +int styleable CollapsingToolbarLayout_statusBarScrim 13 +int styleable CollapsingToolbarLayout_title 14 +int styleable CollapsingToolbarLayout_titleEnabled 15 +int styleable CollapsingToolbarLayout_toolbarId 16 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f0401c4, 0x7f0401c5 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x7f040029, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f04006f, 0x7f040075, 0x7f040076 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f04002c, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04007f, 0x7f0400cd, 0x7f040114, 0x7f040152, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040163, 0x7f040164, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f0401c9, 0x7f0401ca, 0x7f0401cb, 0x7f0401cc, 0x7f0401cd, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f8, 0x7f04024a, 0x7f04024b, 0x7f040271, 0x7f040278, 0x7f040350, 0x7f040352, 0x7f04035d } +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animate_relativeTo 27 +int styleable Constraint_barrierAllowsGoneWidgets 28 +int styleable Constraint_barrierDirection 29 +int styleable Constraint_barrierMargin 30 +int styleable Constraint_chainUseRtl 31 +int styleable Constraint_constraint_referenced_ids 32 +int styleable Constraint_drawPath 33 +int styleable Constraint_flow_firstHorizontalBias 34 +int styleable Constraint_flow_firstHorizontalStyle 35 +int styleable Constraint_flow_firstVerticalBias 36 +int styleable Constraint_flow_firstVerticalStyle 37 +int styleable Constraint_flow_horizontalAlign 38 +int styleable Constraint_flow_horizontalBias 39 +int styleable Constraint_flow_horizontalGap 40 +int styleable Constraint_flow_horizontalStyle 41 +int styleable Constraint_flow_lastHorizontalBias 42 +int styleable Constraint_flow_lastHorizontalStyle 43 +int styleable Constraint_flow_lastVerticalBias 44 +int styleable Constraint_flow_lastVerticalStyle 45 +int styleable Constraint_flow_maxElementsWrap 46 +int styleable Constraint_flow_verticalAlign 47 +int styleable Constraint_flow_verticalBias 48 +int styleable Constraint_flow_verticalGap 49 +int styleable Constraint_flow_verticalStyle 50 +int styleable Constraint_flow_wrapMode 51 +int styleable Constraint_layout_constrainedHeight 52 +int styleable Constraint_layout_constrainedWidth 53 +int styleable Constraint_layout_constraintBaseline_creator 54 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 55 +int styleable Constraint_layout_constraintBottom_creator 56 +int styleable Constraint_layout_constraintBottom_toBottomOf 57 +int styleable Constraint_layout_constraintBottom_toTopOf 58 +int styleable Constraint_layout_constraintCircle 59 +int styleable Constraint_layout_constraintCircleAngle 60 +int styleable Constraint_layout_constraintCircleRadius 61 +int styleable Constraint_layout_constraintDimensionRatio 62 +int styleable Constraint_layout_constraintEnd_toEndOf 63 +int styleable Constraint_layout_constraintEnd_toStartOf 64 +int styleable Constraint_layout_constraintGuide_begin 65 +int styleable Constraint_layout_constraintGuide_end 66 +int styleable Constraint_layout_constraintGuide_percent 67 +int styleable Constraint_layout_constraintHeight_default 68 +int styleable Constraint_layout_constraintHeight_max 69 +int styleable Constraint_layout_constraintHeight_min 70 +int styleable Constraint_layout_constraintHeight_percent 71 +int styleable Constraint_layout_constraintHorizontal_bias 72 +int styleable Constraint_layout_constraintHorizontal_chainStyle 73 +int styleable Constraint_layout_constraintHorizontal_weight 74 +int styleable Constraint_layout_constraintLeft_creator 75 +int styleable Constraint_layout_constraintLeft_toLeftOf 76 +int styleable Constraint_layout_constraintLeft_toRightOf 77 +int styleable Constraint_layout_constraintRight_creator 78 +int styleable Constraint_layout_constraintRight_toLeftOf 79 +int styleable Constraint_layout_constraintRight_toRightOf 80 +int styleable Constraint_layout_constraintStart_toEndOf 81 +int styleable Constraint_layout_constraintStart_toStartOf 82 +int styleable Constraint_layout_constraintTag 83 +int styleable Constraint_layout_constraintTop_creator 84 +int styleable Constraint_layout_constraintTop_toBottomOf 85 +int styleable Constraint_layout_constraintTop_toTopOf 86 +int styleable Constraint_layout_constraintVertical_bias 87 +int styleable Constraint_layout_constraintVertical_chainStyle 88 +int styleable Constraint_layout_constraintVertical_weight 89 +int styleable Constraint_layout_constraintWidth_default 90 +int styleable Constraint_layout_constraintWidth_max 91 +int styleable Constraint_layout_constraintWidth_min 92 +int styleable Constraint_layout_constraintWidth_percent 93 +int styleable Constraint_layout_editor_absoluteX 94 +int styleable Constraint_layout_editor_absoluteY 95 +int styleable Constraint_layout_goneMarginBottom 96 +int styleable Constraint_layout_goneMarginEnd 97 +int styleable Constraint_layout_goneMarginLeft 98 +int styleable Constraint_layout_goneMarginRight 99 +int styleable Constraint_layout_goneMarginStart 100 +int styleable Constraint_layout_goneMarginTop 101 +int styleable Constraint_motionProgress 102 +int styleable Constraint_motionStagger 103 +int styleable Constraint_pathMotionArc 104 +int styleable Constraint_pivotAnchor 105 +int styleable Constraint_transitionEasing 106 +int styleable Constraint_transitionPathRotate 107 +int styleable Constraint_visibilityMode 108 +int[] styleable ConstraintLayout_Layout { 0x1010440, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10100d5, 0x10100d9, 0x10103b4, 0x10100d6, 0x10100d8, 0x10103b3, 0x10100d7, 0x10100dc, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04007f, 0x7f0400ca, 0x7f0400cd, 0x7f040152, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040163, 0x7f040164, 0x7f0401be, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f0401c9, 0x7f0401ca, 0x7f0401cb, 0x7f0401cc, 0x7f0401cd, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f8, 0x7f0401fb } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_maxHeight 1 +int styleable ConstraintLayout_Layout_android_maxWidth 2 +int styleable ConstraintLayout_Layout_android_minHeight 3 +int styleable ConstraintLayout_Layout_android_minWidth 4 +int styleable ConstraintLayout_Layout_android_orientation 5 +int styleable ConstraintLayout_Layout_android_padding 6 +int styleable ConstraintLayout_Layout_android_paddingBottom 7 +int styleable ConstraintLayout_Layout_android_paddingEnd 8 +int styleable ConstraintLayout_Layout_android_paddingLeft 9 +int styleable ConstraintLayout_Layout_android_paddingRight 10 +int styleable ConstraintLayout_Layout_android_paddingStart 11 +int styleable ConstraintLayout_Layout_android_paddingTop 12 +int styleable ConstraintLayout_Layout_android_visibility 13 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 14 +int styleable ConstraintLayout_Layout_barrierDirection 15 +int styleable ConstraintLayout_Layout_barrierMargin 16 +int styleable ConstraintLayout_Layout_chainUseRtl 17 +int styleable ConstraintLayout_Layout_constraintSet 18 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 19 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 20 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 21 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 22 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 23 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 24 +int styleable ConstraintLayout_Layout_flow_horizontalBias 25 +int styleable ConstraintLayout_Layout_flow_horizontalGap 26 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 27 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 28 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 29 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 30 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 31 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 32 +int styleable ConstraintLayout_Layout_flow_verticalAlign 33 +int styleable ConstraintLayout_Layout_flow_verticalBias 34 +int styleable ConstraintLayout_Layout_flow_verticalGap 35 +int styleable ConstraintLayout_Layout_flow_verticalStyle 36 +int styleable ConstraintLayout_Layout_flow_wrapMode 37 +int styleable ConstraintLayout_Layout_layoutDescription 38 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 39 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 40 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 41 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 42 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 43 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 44 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 45 +int styleable ConstraintLayout_Layout_layout_constraintCircle 46 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 47 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 48 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 49 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 50 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 51 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 52 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 53 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 54 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 55 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 56 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 57 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 58 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 59 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 60 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 61 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 62 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 63 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 64 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 65 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 66 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 67 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 68 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 69 +int styleable ConstraintLayout_Layout_layout_constraintTag 70 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 71 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 72 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 73 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 74 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 75 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 76 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 77 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 78 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 79 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 80 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 81 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 82 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 83 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 84 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 85 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 86 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 87 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 88 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 89 +int[] styleable ConstraintLayout_placeholder { 0x7f0400cf, 0x7f04027c } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintSet { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x10101b5, 0x10101b6, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f04002c, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04007f, 0x7f0400cd, 0x7f040108, 0x7f040114, 0x7f040152, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c, 0x7f04015d, 0x7f04015e, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f040163, 0x7f040164, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f0401c9, 0x7f0401ca, 0x7f0401cb, 0x7f0401cc, 0x7f0401cd, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e5, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f8, 0x7f04024a, 0x7f04024b, 0x7f040271, 0x7f040278, 0x7f040350, 0x7f040352 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_pivotX 16 +int styleable ConstraintSet_android_pivotY 17 +int styleable ConstraintSet_android_rotation 18 +int styleable ConstraintSet_android_rotationX 19 +int styleable ConstraintSet_android_rotationY 20 +int styleable ConstraintSet_android_scaleX 21 +int styleable ConstraintSet_android_scaleY 22 +int styleable ConstraintSet_android_transformPivotX 23 +int styleable ConstraintSet_android_transformPivotY 24 +int styleable ConstraintSet_android_translationX 25 +int styleable ConstraintSet_android_translationY 26 +int styleable ConstraintSet_android_translationZ 27 +int styleable ConstraintSet_android_visibility 28 +int styleable ConstraintSet_animate_relativeTo 29 +int styleable ConstraintSet_barrierAllowsGoneWidgets 30 +int styleable ConstraintSet_barrierDirection 31 +int styleable ConstraintSet_barrierMargin 32 +int styleable ConstraintSet_chainUseRtl 33 +int styleable ConstraintSet_constraint_referenced_ids 34 +int styleable ConstraintSet_deriveConstraintsFrom 35 +int styleable ConstraintSet_drawPath 36 +int styleable ConstraintSet_flow_firstHorizontalBias 37 +int styleable ConstraintSet_flow_firstHorizontalStyle 38 +int styleable ConstraintSet_flow_firstVerticalBias 39 +int styleable ConstraintSet_flow_firstVerticalStyle 40 +int styleable ConstraintSet_flow_horizontalAlign 41 +int styleable ConstraintSet_flow_horizontalBias 42 +int styleable ConstraintSet_flow_horizontalGap 43 +int styleable ConstraintSet_flow_horizontalStyle 44 +int styleable ConstraintSet_flow_lastHorizontalBias 45 +int styleable ConstraintSet_flow_lastHorizontalStyle 46 +int styleable ConstraintSet_flow_lastVerticalBias 47 +int styleable ConstraintSet_flow_lastVerticalStyle 48 +int styleable ConstraintSet_flow_maxElementsWrap 49 +int styleable ConstraintSet_flow_verticalAlign 50 +int styleable ConstraintSet_flow_verticalBias 51 +int styleable ConstraintSet_flow_verticalGap 52 +int styleable ConstraintSet_flow_verticalStyle 53 +int styleable ConstraintSet_flow_wrapMode 54 +int styleable ConstraintSet_layout_constrainedHeight 55 +int styleable ConstraintSet_layout_constrainedWidth 56 +int styleable ConstraintSet_layout_constraintBaseline_creator 57 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 58 +int styleable ConstraintSet_layout_constraintBottom_creator 59 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 60 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 61 +int styleable ConstraintSet_layout_constraintCircle 62 +int styleable ConstraintSet_layout_constraintCircleAngle 63 +int styleable ConstraintSet_layout_constraintCircleRadius 64 +int styleable ConstraintSet_layout_constraintDimensionRatio 65 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 66 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 67 +int styleable ConstraintSet_layout_constraintGuide_begin 68 +int styleable ConstraintSet_layout_constraintGuide_end 69 +int styleable ConstraintSet_layout_constraintGuide_percent 70 +int styleable ConstraintSet_layout_constraintHeight_default 71 +int styleable ConstraintSet_layout_constraintHeight_max 72 +int styleable ConstraintSet_layout_constraintHeight_min 73 +int styleable ConstraintSet_layout_constraintHeight_percent 74 +int styleable ConstraintSet_layout_constraintHorizontal_bias 75 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 76 +int styleable ConstraintSet_layout_constraintHorizontal_weight 77 +int styleable ConstraintSet_layout_constraintLeft_creator 78 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 79 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 80 +int styleable ConstraintSet_layout_constraintRight_creator 81 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 82 +int styleable ConstraintSet_layout_constraintRight_toRightOf 83 +int styleable ConstraintSet_layout_constraintStart_toEndOf 84 +int styleable ConstraintSet_layout_constraintStart_toStartOf 85 +int styleable ConstraintSet_layout_constraintTag 86 +int styleable ConstraintSet_layout_constraintTop_creator 87 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 88 +int styleable ConstraintSet_layout_constraintTop_toTopOf 89 +int styleable ConstraintSet_layout_constraintVertical_bias 90 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 91 +int styleable ConstraintSet_layout_constraintVertical_weight 92 +int styleable ConstraintSet_layout_constraintWidth_default 93 +int styleable ConstraintSet_layout_constraintWidth_max 94 +int styleable ConstraintSet_layout_constraintWidth_min 95 +int styleable ConstraintSet_layout_constraintWidth_percent 96 +int styleable ConstraintSet_layout_editor_absoluteX 97 +int styleable ConstraintSet_layout_editor_absoluteY 98 +int styleable ConstraintSet_layout_goneMarginBottom 99 +int styleable ConstraintSet_layout_goneMarginEnd 100 +int styleable ConstraintSet_layout_goneMarginLeft 101 +int styleable ConstraintSet_layout_goneMarginRight 102 +int styleable ConstraintSet_layout_goneMarginStart 103 +int styleable ConstraintSet_layout_goneMarginTop 104 +int styleable ConstraintSet_motionProgress 105 +int styleable ConstraintSet_motionStagger 106 +int styleable ConstraintSet_pathMotionArc 107 +int styleable ConstraintSet_pivotAnchor 108 +int styleable ConstraintSet_transitionEasing 109 +int styleable ConstraintSet_transitionPathRotate 110 +int[] styleable CoordinatorLayout { 0x7f0401b8, 0x7f0402cd } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f0401c1, 0x7f0401c2, 0x7f0401c3, 0x7f0401f0, 0x7f0401f9, 0x7f0401fa } +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 CustomAttribute { 0x7f040033, 0x7f0400f6, 0x7f0400f7, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fd, 0x7f0400fe } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customStringValue 8 +int[] styleable DrawerArrowToggle { 0x7f040031, 0x7f040032, 0x7f040049, 0x7f0400b3, 0x7f040119, 0x7f040172, 0x7f0402bb, 0x7f04031f } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable ExtendedFloatingActionButton { 0x7f0400af, 0x7f040125, 0x7f040142, 0x7f04017e, 0x7f0402ad, 0x7f0402b1 } +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_hideMotionSpec 3 +int styleable ExtendedFloatingActionButton_showMotionSpec 4 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 5 +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f04004d, 0x7f04004e } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int[] styleable FloatingActionButton { 0x101000e, 0x7f040044, 0x7f040045, 0x7f040058, 0x7f040125, 0x7f040130, 0x7f040149, 0x7f04014a, 0x7f04017e, 0x7f040188, 0x7f040236, 0x7f040285, 0x7f040295, 0x7f0402a4, 0x7f0402a7, 0x7f0402ad, 0x7f040358 } +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f04004d } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f0401af, 0x7f040202 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f040167, 0x7f040168, 0x7f040169, 0x7f04016a, 0x7f04016b, 0x7f04016c } +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, 0x7f040165, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f040357 } +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 ForegroundLinearLayout { 0x1010109, 0x1010200, 0x7f040170 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +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 ImageFilterView { 0x7f04002b, 0x7f040069, 0x7f0400df, 0x7f0400f3, 0x7f040261, 0x7f040296, 0x7f040297, 0x7f040298, 0x7f04035f } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_brightness 1 +int styleable ImageFilterView_contrast 2 +int styleable ImageFilterView_crossfade 3 +int styleable ImageFilterView_overlay 4 +int styleable ImageFilterView_round 5 +int styleable ImageFilterView_roundPercent 6 +int styleable ImageFilterView_saturation 7 +int styleable ImageFilterView_warmth 8 +int[] styleable Insets { 0x7f040263, 0x7f040265, 0x7f040266 } +int styleable Insets_paddingBottomSystemWindowInsets 0 +int styleable Insets_paddingLeftSystemWindowInsets 1 +int styleable Insets_paddingRightSystemWindowInsets 2 +int[] styleable KeyAttribute { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x7f0400f5, 0x7f040171, 0x7f04024a, 0x7f04024c, 0x7f040350, 0x7f040352 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transitionEasing 16 +int styleable KeyAttribute_transitionPathRotate 17 +int[] styleable KeyCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f0400f5, 0x7f040171, 0x7f04024a, 0x7f04024c, 0x7f040350, 0x7f040352, 0x7f040361, 0x7f040362, 0x7f040363, 0x7f040364 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_waveShape 18 +int styleable KeyCycle_waveVariesBy 19 +int[] styleable KeyPosition { 0x7f0400f5, 0x7f040114, 0x7f040171, 0x7f0401b6, 0x7f04024c, 0x7f040271, 0x7f040273, 0x7f040274, 0x7f040275, 0x7f040276, 0x7f0402b5, 0x7f040350 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x101031f, 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010322, 0x1010323, 0x10103fa, 0x7f0400f5, 0x7f040171, 0x7f04024a, 0x7f04024c, 0x7f040350, 0x7f040352, 0x7f040360, 0x7f040361, 0x7f040362, 0x7f040363 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_waveShape 19 +int[] styleable KeyTrigger { 0x7f040171, 0x7f04024c, 0x7f04024d, 0x7f04024e, 0x7f04025a, 0x7f04025c, 0x7f04025d, 0x7f040354, 0x7f040355, 0x7f040356 } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int[] styleable Layout { 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x10100c4, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04007f, 0x7f0400cd, 0x7f0401c6, 0x7f0401c7, 0x7f0401c8, 0x7f0401c9, 0x7f0401ca, 0x7f0401cb, 0x7f0401cc, 0x7f0401cd, 0x7f0401ce, 0x7f0401cf, 0x7f0401d0, 0x7f0401d1, 0x7f0401d2, 0x7f0401d3, 0x7f0401d4, 0x7f0401d5, 0x7f0401d6, 0x7f0401d7, 0x7f0401d8, 0x7f0401d9, 0x7f0401da, 0x7f0401db, 0x7f0401dc, 0x7f0401dd, 0x7f0401de, 0x7f0401df, 0x7f0401e0, 0x7f0401e1, 0x7f0401e2, 0x7f0401e3, 0x7f0401e4, 0x7f0401e6, 0x7f0401e7, 0x7f0401e8, 0x7f0401e9, 0x7f0401ea, 0x7f0401eb, 0x7f0401ec, 0x7f0401ed, 0x7f0401ee, 0x7f0401ef, 0x7f0401f1, 0x7f0401f2, 0x7f0401f3, 0x7f0401f4, 0x7f0401f5, 0x7f0401f6, 0x7f0401f7, 0x7f0401f8, 0x7f040235, 0x7f040239, 0x7f04023c, 0x7f040240 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_layout_constrainedHeight 14 +int styleable Layout_layout_constrainedWidth 15 +int styleable Layout_layout_constraintBaseline_creator 16 +int styleable Layout_layout_constraintBaseline_toBaselineOf 17 +int styleable Layout_layout_constraintBottom_creator 18 +int styleable Layout_layout_constraintBottom_toBottomOf 19 +int styleable Layout_layout_constraintBottom_toTopOf 20 +int styleable Layout_layout_constraintCircle 21 +int styleable Layout_layout_constraintCircleAngle 22 +int styleable Layout_layout_constraintCircleRadius 23 +int styleable Layout_layout_constraintDimensionRatio 24 +int styleable Layout_layout_constraintEnd_toEndOf 25 +int styleable Layout_layout_constraintEnd_toStartOf 26 +int styleable Layout_layout_constraintGuide_begin 27 +int styleable Layout_layout_constraintGuide_end 28 +int styleable Layout_layout_constraintGuide_percent 29 +int styleable Layout_layout_constraintHeight_default 30 +int styleable Layout_layout_constraintHeight_max 31 +int styleable Layout_layout_constraintHeight_min 32 +int styleable Layout_layout_constraintHeight_percent 33 +int styleable Layout_layout_constraintHorizontal_bias 34 +int styleable Layout_layout_constraintHorizontal_chainStyle 35 +int styleable Layout_layout_constraintHorizontal_weight 36 +int styleable Layout_layout_constraintLeft_creator 37 +int styleable Layout_layout_constraintLeft_toLeftOf 38 +int styleable Layout_layout_constraintLeft_toRightOf 39 +int styleable Layout_layout_constraintRight_creator 40 +int styleable Layout_layout_constraintRight_toLeftOf 41 +int styleable Layout_layout_constraintRight_toRightOf 42 +int styleable Layout_layout_constraintStart_toEndOf 43 +int styleable Layout_layout_constraintStart_toStartOf 44 +int styleable Layout_layout_constraintTop_creator 45 +int styleable Layout_layout_constraintTop_toBottomOf 46 +int styleable Layout_layout_constraintTop_toTopOf 47 +int styleable Layout_layout_constraintVertical_bias 48 +int styleable Layout_layout_constraintVertical_chainStyle 49 +int styleable Layout_layout_constraintVertical_weight 50 +int styleable Layout_layout_constraintWidth_default 51 +int styleable Layout_layout_constraintWidth_max 52 +int styleable Layout_layout_constraintWidth_min 53 +int styleable Layout_layout_constraintWidth_percent 54 +int styleable Layout_layout_editor_absoluteX 55 +int styleable Layout_layout_editor_absoluteY 56 +int styleable Layout_layout_goneMarginBottom 57 +int styleable Layout_layout_goneMarginEnd 58 +int styleable Layout_layout_goneMarginLeft 59 +int styleable Layout_layout_goneMarginRight 60 +int styleable Layout_layout_goneMarginStart 61 +int styleable Layout_layout_goneMarginTop 62 +int styleable Layout_maxHeight 63 +int styleable Layout_maxWidth 64 +int styleable Layout_minHeight 65 +int styleable Layout_minWidth 66 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04010d, 0x7f04010f, 0x7f04023a, 0x7f0402ac } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable LinearProgressIndicator { 0x7f040193, 0x7f040197 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x7f04003d, 0x7f04003e, 0x7f04003f, 0x7f040040 } +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int[] styleable MaterialAlertDialogTheme { 0x7f040215, 0x7f040216, 0x7f040217, 0x7f040218, 0x7f040219 } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 4 +int[] styleable MaterialAutoCompleteTextView { 0x1010220 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int[] styleable MaterialButton { 0x10100d4, 0x10101e5, 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f040044, 0x7f040045, 0x7f0400e7, 0x7f040125, 0x7f040189, 0x7f04018b, 0x7f04018c, 0x7f04018d, 0x7f04018f, 0x7f040190, 0x7f040295, 0x7f0402a4, 0x7f0402a7, 0x7f0402d0, 0x7f0402d1 } +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int[] styleable MaterialButtonToggleGroup { 0x7f040081, 0x7f0402a2, 0x7f0402b4 } +int styleable MaterialButtonToggleGroup_checkedButton 0 +int styleable MaterialButtonToggleGroup_selectionRequired 1 +int styleable MaterialButtonToggleGroup_singleSelection 2 +int[] styleable MaterialCalendar { 0x101020d, 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040102, 0x7f040257, 0x7f04028b, 0x7f04036f, 0x7f040370, 0x7f040371 } +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_dayInvalidStyle 1 +int styleable MaterialCalendar_daySelectedStyle 2 +int styleable MaterialCalendar_dayStyle 3 +int styleable MaterialCalendar_dayTodayStyle 4 +int styleable MaterialCalendar_nestedScrollable 5 +int styleable MaterialCalendar_rangeFillColor 6 +int styleable MaterialCalendar_yearSelectedStyle 7 +int styleable MaterialCalendar_yearStyle 8 +int styleable MaterialCalendar_yearTodayStyle 9 +int[] styleable MaterialCalendarItem { 0x10101ba, 0x10101b7, 0x10101b8, 0x10101b9, 0x7f04019f, 0x7f0401a8, 0x7f0401a9, 0x7f0401b0, 0x7f0401b1, 0x7f0401b5 } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int[] styleable MaterialCardView { 0x10101e5, 0x7f04007a, 0x7f040083, 0x7f040085, 0x7f040086, 0x7f040087, 0x7f040295, 0x7f0402a4, 0x7f0402a7, 0x7f0402ca, 0x7f0402d0, 0x7f0402d1 } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconMargin 3 +int styleable MaterialCardView_checkedIconSize 4 +int styleable MaterialCardView_checkedIconTint 5 +int styleable MaterialCardView_rippleColor 6 +int styleable MaterialCardView_shapeAppearance 7 +int styleable MaterialCardView_shapeAppearanceOverlay 8 +int styleable MaterialCardView_state_dragged 9 +int styleable MaterialCardView_strokeColor 10 +int styleable MaterialCardView_strokeWidth 11 +int[] styleable MaterialCheckBox { 0x7f040075, 0x7f040359 } +int styleable MaterialCheckBox_buttonTint 0 +int styleable MaterialCheckBox_useMaterialThemeColors 1 +int[] styleable MaterialRadioButton { 0x7f040075, 0x7f040359 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f0402a4, 0x7f0402a7 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialTextAppearance { 0x10104b6, 0x101057f, 0x7f040201 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x101057f, 0x1010034, 0x7f040201 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f0400a3, 0x7f0401b7 } +int styleable MaterialTimePicker_clockIcon 0 +int styleable MaterialTimePicker_keyboardIcon 1 +int[] styleable MaterialToolbar { 0x7f040253 } +int styleable MaterialToolbar_navigationIconTint 0 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040022, 0x7f04002a, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f0400d0, 0x7f04018f, 0x7f040190, 0x7f040259, 0x7f0402aa, 0x7f040342 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f040284, 0x7f0402d2 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x7f040241, 0x7f040242, 0x7f040243, 0x7f040244, 0x7f040245, 0x7f040246 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable Motion { 0x7f04002c, 0x7f040114, 0x7f040249, 0x7f04024b, 0x7f040271, 0x7f040350 } +int styleable Motion_animate_relativeTo 0 +int styleable Motion_drawPath 1 +int styleable Motion_motionPathRotate 2 +int styleable Motion_motionStagger 3 +int styleable Motion_pathMotionArc 4 +int styleable Motion_transitionEasing 5 +int[] styleable MotionHelper { 0x7f04025b, 0x7f04025e } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLayout { 0x7f04002f, 0x7f0400f4, 0x7f0401be, 0x7f040247, 0x7f04024a, 0x7f0402ae } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f040103, 0x7f0401bf } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f0402fc, 0x7f0402fd, 0x7f0402fe } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int[] styleable NavigationView { 0x10100d4, 0x10100dd, 0x101011f, 0x7f040125, 0x7f040177, 0x7f04019e, 0x7f0401a0, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a8, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab, 0x7f0401ac, 0x7f0401ad, 0x7f0401ae, 0x7f0401b2, 0x7f0401b5, 0x7f04023b, 0x7f0402a4, 0x7f0402a7 } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 4 +int styleable NavigationView_itemBackground 5 +int styleable NavigationView_itemHorizontalPadding 6 +int styleable NavigationView_itemIconPadding 7 +int styleable NavigationView_itemIconSize 8 +int styleable NavigationView_itemIconTint 9 +int styleable NavigationView_itemMaxLines 10 +int styleable NavigationView_itemShapeAppearance 11 +int styleable NavigationView_itemShapeAppearanceOverlay 12 +int styleable NavigationView_itemShapeFillColor 13 +int styleable NavigationView_itemShapeInsetBottom 14 +int styleable NavigationView_itemShapeInsetEnd 15 +int styleable NavigationView_itemShapeInsetStart 16 +int styleable NavigationView_itemShapeInsetTop 17 +int styleable NavigationView_itemTextAppearance 18 +int styleable NavigationView_itemTextColor 19 +int styleable NavigationView_menu 20 +int styleable NavigationView_shapeAppearance 21 +int styleable NavigationView_shapeAppearanceOverlay 22 +int[] styleable OnClick { 0x7f0400a0, 0x7f0402fb } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f040111, 0x7f040112, 0x7f040113, 0x7f040200, 0x7f040231, 0x7f040238, 0x7f04024f, 0x7f040256, 0x7f04025f, 0x7f040343, 0x7f040344, 0x7f040345 } +int styleable OnSwipe_dragDirection 0 +int styleable OnSwipe_dragScale 1 +int styleable OnSwipe_dragThreshold 2 +int styleable OnSwipe_limitBoundsTo 3 +int styleable OnSwipe_maxAcceleration 4 +int styleable OnSwipe_maxVelocity 5 +int styleable OnSwipe_moveWhenScrollAtTop 6 +int styleable OnSwipe_nestedScrollFlags 7 +int styleable OnSwipe_onTouchUp 8 +int styleable OnSwipe_touchAnchorId 9 +int styleable OnSwipe_touchAnchorSide 10 +int styleable OnSwipe_touchRegionId 11 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f040260 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f0402c7 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable PropertySet { 0x101031f, 0x10100dc, 0x7f0401e5, 0x7f04024a, 0x7f04035d } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f04022c } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f04023e, 0x7f04035a } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f040262, 0x7f040268 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x7f04014b, 0x7f04014c, 0x7f04014d, 0x7f04014e, 0x7f04014f, 0x7f0401c0, 0x7f040294, 0x7f0402ba, 0x7f0402c0 } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable ScrimInsetsFrameLayout { 0x7f04019b } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f040054 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f0400a5, 0x7f0400c9, 0x7f040104, 0x7f040174, 0x7f040191, 0x7f0401bd, 0x7f040288, 0x7f040289, 0x7f04029c, 0x7f04029d, 0x7f0402d3, 0x7f0402db, 0x7f04035e } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable ShapeAppearance { 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e8, 0x7f0400e9, 0x7f0400ea, 0x7f0400eb, 0x7f0400ec } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0402a4, 0x7f0402a7, 0x7f0402d0, 0x7f0402d1 } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable Slider { 0x101000e, 0x1010146, 0x1010024, 0x10102de, 0x10102df, 0x7f040175, 0x7f040176, 0x7f0401b9, 0x7f0401ba, 0x7f040320, 0x7f040321, 0x7f040322, 0x7f040323, 0x7f040324, 0x7f040328, 0x7f040329, 0x7f04032a, 0x7f04032e, 0x7f040347, 0x7f040348, 0x7f040349, 0x7f04034b } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_thumbColor 9 +int styleable Slider_thumbElevation 10 +int styleable Slider_thumbRadius 11 +int styleable Slider_thumbStrokeColor 12 +int styleable Slider_thumbStrokeWidth 13 +int styleable Slider_tickColor 14 +int styleable Slider_tickColorActive 15 +int styleable Slider_tickColorInactive 16 +int styleable Slider_tickVisible 17 +int styleable Slider_trackColor 18 +int styleable Slider_trackColorActive 19 +int styleable Slider_trackColorInactive 20 +int styleable Slider_trackHeight 21 +int[] styleable Snackbar { 0x7f0402b7, 0x7f0402b8, 0x7f0402b9 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable SnackbarLayout { 0x7f040021, 0x101011f, 0x7f04002d, 0x7f040041, 0x7f040044, 0x7f040045, 0x7f040125, 0x7f040232 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f04027f } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable State { 0x10100d0, 0x7f0400ce } +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable StateSet { 0x7f040105 } +int styleable StateSet_defaultState 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f0402af, 0x7f0402be, 0x7f0402dc, 0x7f0402dd, 0x7f0402df, 0x7f040325, 0x7f040326, 0x7f040327, 0x7f040346, 0x7f04034d, 0x7f04034e } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x7f040359 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x1010002, 0x10100f2, 0x101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f0402e0, 0x7f0402e1, 0x7f0402e2, 0x7f0402e3, 0x7f0402e4, 0x7f0402e5, 0x7f0402e6, 0x7f0402e7, 0x7f0402e8, 0x7f0402e9, 0x7f0402ea, 0x7f0402eb, 0x7f0402ec, 0x7f0402ed, 0x7f0402ee, 0x7f0402ef, 0x7f0402f0, 0x7f0402f1, 0x7f0402f2, 0x7f0402f3, 0x7f0402f4, 0x7f0402f5, 0x7f0402f6, 0x7f0402f8, 0x7f0402f9, 0x7f0402fa } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextColor 22 +int styleable TabLayout_tabTextAppearance 23 +int styleable TabLayout_tabTextColor 24 +int styleable TabLayout_tabUnboundedRipple 25 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f040166, 0x7f04016e, 0x7f0402ff, 0x7f04031b } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextInputEditText { 0x7f040319 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x101000e, 0x1010150, 0x101009a, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f040067, 0x7f040068, 0x7f0400ed, 0x7f0400ee, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f040128, 0x7f040129, 0x7f04012a, 0x7f04012b, 0x7f04012c, 0x7f04012d, 0x7f040131, 0x7f040132, 0x7f040133, 0x7f040134, 0x7f040135, 0x7f040136, 0x7f040137, 0x7f04013a, 0x7f040179, 0x7f04017a, 0x7f04017b, 0x7f04017c, 0x7f040181, 0x7f040182, 0x7f040183, 0x7f040184, 0x7f04026c, 0x7f04026d, 0x7f04026e, 0x7f04026f, 0x7f040270, 0x7f040279, 0x7f04027a, 0x7f04027b, 0x7f040281, 0x7f040282, 0x7f040283, 0x7f0402a4, 0x7f0402a7, 0x7f0402c2, 0x7f0402c3, 0x7f0402c4, 0x7f0402c5, 0x7f0402c6, 0x7f0402d8, 0x7f0402d9, 0x7f0402da } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_textColorHint 2 +int styleable TextInputLayout_boxBackgroundColor 3 +int styleable TextInputLayout_boxBackgroundMode 4 +int styleable TextInputLayout_boxCollapsedPaddingTop 5 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 6 +int styleable TextInputLayout_boxCornerRadiusBottomStart 7 +int styleable TextInputLayout_boxCornerRadiusTopEnd 8 +int styleable TextInputLayout_boxCornerRadiusTopStart 9 +int styleable TextInputLayout_boxStrokeColor 10 +int styleable TextInputLayout_boxStrokeErrorColor 11 +int styleable TextInputLayout_boxStrokeWidth 12 +int styleable TextInputLayout_boxStrokeWidthFocused 13 +int styleable TextInputLayout_counterEnabled 14 +int styleable TextInputLayout_counterMaxLength 15 +int styleable TextInputLayout_counterOverflowTextAppearance 16 +int styleable TextInputLayout_counterOverflowTextColor 17 +int styleable TextInputLayout_counterTextAppearance 18 +int styleable TextInputLayout_counterTextColor 19 +int styleable TextInputLayout_endIconCheckable 20 +int styleable TextInputLayout_endIconContentDescription 21 +int styleable TextInputLayout_endIconDrawable 22 +int styleable TextInputLayout_endIconMode 23 +int styleable TextInputLayout_endIconTint 24 +int styleable TextInputLayout_endIconTintMode 25 +int styleable TextInputLayout_errorContentDescription 26 +int styleable TextInputLayout_errorEnabled 27 +int styleable TextInputLayout_errorIconDrawable 28 +int styleable TextInputLayout_errorIconTint 29 +int styleable TextInputLayout_errorIconTintMode 30 +int styleable TextInputLayout_errorTextAppearance 31 +int styleable TextInputLayout_errorTextColor 32 +int styleable TextInputLayout_expandedHintEnabled 33 +int styleable TextInputLayout_helperText 34 +int styleable TextInputLayout_helperTextEnabled 35 +int styleable TextInputLayout_helperTextTextAppearance 36 +int styleable TextInputLayout_helperTextTextColor 37 +int styleable TextInputLayout_hintAnimationEnabled 38 +int styleable TextInputLayout_hintEnabled 39 +int styleable TextInputLayout_hintTextAppearance 40 +int styleable TextInputLayout_hintTextColor 41 +int styleable TextInputLayout_passwordToggleContentDescription 42 +int styleable TextInputLayout_passwordToggleDrawable 43 +int styleable TextInputLayout_passwordToggleEnabled 44 +int styleable TextInputLayout_passwordToggleTint 45 +int styleable TextInputLayout_passwordToggleTintMode 46 +int styleable TextInputLayout_placeholderText 47 +int styleable TextInputLayout_placeholderTextAppearance 48 +int styleable TextInputLayout_placeholderTextColor 49 +int styleable TextInputLayout_prefixText 50 +int styleable TextInputLayout_prefixTextAppearance 51 +int styleable TextInputLayout_prefixTextColor 52 +int styleable TextInputLayout_shapeAppearance 53 +int styleable TextInputLayout_shapeAppearanceOverlay 54 +int styleable TextInputLayout_startIconCheckable 55 +int styleable TextInputLayout_startIconContentDescription 56 +int styleable TextInputLayout_startIconDrawable 57 +int styleable TextInputLayout_startIconTint 58 +int styleable TextInputLayout_startIconTintMode 59 +int styleable TextInputLayout_suffixText 60 +int styleable TextInputLayout_suffixTextAppearance 61 +int styleable TextInputLayout_suffixTextColor 62 +int[] styleable ThemeEnforcement { 0x1010034, 0x7f04012e, 0x7f04012f } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040070, 0x7f0400ad, 0x7f0400ae, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f040213, 0x7f040214, 0x7f040233, 0x7f04023b, 0x7f040251, 0x7f040252, 0x7f04027f, 0x7f0402d4, 0x7f0402d5, 0x7f0402d6, 0x7f040331, 0x7f040333, 0x7f040334, 0x7f040335, 0x7f040336, 0x7f040337, 0x7f040338, 0x7f040339, 0x7f04033a } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x10100f6, 0x1010140, 0x101013f, 0x10100d5, 0x101014f, 0x1010034, 0x7f040044 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_backgroundTint 6 +int[] styleable Transform { 0x1010440, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int[] styleable Transition { 0x10100d0, 0x7f04003a, 0x7f0400cb, 0x7f0400cc, 0x7f040121, 0x7f0401bf, 0x7f040248, 0x7f040271, 0x7f0402c1, 0x7f04034f, 0x7f040351 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f0400ce, 0x7f040290, 0x7f040291, 0x7f040292, 0x7f040293 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x10100da, 0x1010000, 0x7f040264, 0x7f040267, 0x7f04031d } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040044, 0x7f040045 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int xml standalone_badge 0x7f180001 +int xml standalone_badge_gravity_bottom_end 0x7f180002 +int xml standalone_badge_gravity_bottom_start 0x7f180003 +int xml standalone_badge_gravity_top_start 0x7f180004 +int xml standalone_badge_offset 0x7f180005 diff --git a/common/build/outputs/logs/manifest-merger-debug-report.txt b/common/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000..0617a77 --- /dev/null +++ b/common/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,37 @@ +-- Merging decision tree log --- +manifest +ADDED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 + package + ADDED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:11-45 + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + android:versionName + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + ADDED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + xmlns:android + ADDED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 + android:versionCode + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + ADDED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml:2:1-5:12 + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml +uses-sdk +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml reason: use-sdk injection requested +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml +INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + android:targetSdkVersion + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + ADDED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + android:minSdkVersion + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + ADDED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml + INJECTED from D:\StudioProjects\UnionMedTV\common\src\main\AndroidManifest.xml diff --git a/common/proguard-rules.pro b/common/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/common/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/common/src/main/AndroidManifest.xml b/common/src/main/AndroidManifest.xml new file mode 100644 index 0000000..aa3a72f --- /dev/null +++ b/common/src/main/AndroidManifest.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/common/src/main/java/cn/rongcloud/demo/common/MockAppServer.java b/common/src/main/java/cn/rongcloud/demo/common/MockAppServer.java new file mode 100644 index 0000000..436f481 --- /dev/null +++ b/common/src/main/java/cn/rongcloud/demo/common/MockAppServer.java @@ -0,0 +1,127 @@ +package cn.rongcloud.demo.common; + +import org.json.JSONObject; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.net.HttpURLConnection; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.Random; + +public class MockAppServer { + + private static final String TOKEN_SERVER = "https://api-cn.ronghub.com"; + + public static void getToken(final String appKey, final String appSecret, final String userId, final GetTokenCallback callback) { + new Thread(new Runnable() { + @Override + public void run() { + long timestamp = System.currentTimeMillis(); + int nonce = new Random().nextInt(9999) + 10000; + String signature = sha1(appSecret + nonce + timestamp); + + InputStream is = null; + OutputStream out = null; + ByteArrayOutputStream message = null; + try { + HttpURLConnection conn = (HttpURLConnection) new URL(TOKEN_SERVER + "/user/getToken.json").openConnection(); + conn.setRequestMethod("POST"); + conn.setReadTimeout(5000); + conn.setConnectTimeout(5000); + conn.setDoOutput(true); + conn.setDoInput(true); + conn.setUseCaches(false); + conn.addRequestProperty("Content-Type", "application/x-www-form-urlencoded"); + conn.addRequestProperty("Timestamp", String.valueOf(timestamp)); + conn.addRequestProperty("Nonce", String.valueOf(nonce)); + conn.addRequestProperty("Signature", signature); + conn.addRequestProperty("App-Key", appKey); + + String data = "userId=" + userId; + out = conn.getOutputStream(); + out.write(data.getBytes()); + out.flush(); + if (conn.getResponseCode() == 200) { + is = conn.getInputStream(); + message = new ByteArrayOutputStream(); + int len = 0; + byte[] buffer = new byte[1024]; + while ((len = is.read(buffer)) != -1) { + message.write(buffer, 0, len); + } + + String msg = new String(message.toByteArray()); + JSONObject jsonObject = new JSONObject(msg); + if (jsonObject.optInt("code") == 200) { + callback.onGetTokenSuccess(jsonObject.optString("token")); + } else { + callback.onGetTokenFailed("code = " + jsonObject.optInt("code")); + } + } + } catch (Exception e) { + e.printStackTrace(); + callback.onGetTokenFailed(e.getMessage()); + } finally { + if (null != is) { + try { + is.close(); + } catch (IOException ignored) { + } + } + + if (null != out) { + try { + out.close(); + } catch (IOException ignored) { + } + } + + if (null != message) { + try { + message.close(); + } catch (IOException ignored) { + } + } + } + } + }).start(); + } + + private static String convertToHex(byte[] data) { + StringBuilder buf = new StringBuilder(); + for (byte b : data) { + int halfByte = (b >>> 4) & 0x0F; + int twoHalfs = 0; + do { + buf.append(halfByte <= 9 ? (char) ('0' + halfByte) : (char) ('a' + halfByte - 10)); + halfByte = b & 0x0F; + } while (twoHalfs++ < 1); + } + return buf.toString(); + } + + private static String sha1(String text) { + MessageDigest md; + try { + md = MessageDigest.getInstance("SHA-1"); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + md.update(text.getBytes(StandardCharsets.ISO_8859_1), 0, text.length()); + byte[] sha1hash = md.digest(); + return convertToHex(sha1hash); + } + + public interface GetTokenCallback { + + void onGetTokenSuccess(String token); + + void onGetTokenFailed(String err); + } +} diff --git a/common/src/main/java/cn/rongcloud/demo/common/UiUtils.java b/common/src/main/java/cn/rongcloud/demo/common/UiUtils.java new file mode 100644 index 0000000..d6a3060 --- /dev/null +++ b/common/src/main/java/cn/rongcloud/demo/common/UiUtils.java @@ -0,0 +1,52 @@ +/* + * Copyright © 2021 RongCloud. All rights reserved. + */ + +package cn.rongcloud.demo.common; + +import android.app.AlertDialog; +import android.content.Context; +import android.graphics.drawable.ColorDrawable; +import android.os.SystemClock; + +public class UiUtils { + + /// 两次点击按钮之间的点击间隔不能少于 1000 毫秒 + private static final int MIN_CLICK_DELAY_TIME = 1000; + + private static long lastClickTime; + private static AlertDialog waitingDialog; + + public static boolean isFastClick() { + return isFastClick(-1); + } + + public static boolean isFastClick(long during) { + boolean flag = false; + long curClickTime = SystemClock.elapsedRealtime(); + long tempDuring = during < 0 ? MIN_CLICK_DELAY_TIME : during; + if ((curClickTime - lastClickTime) >= tempDuring) { + flag = true; + } + lastClickTime = curClickTime; + return flag; + } + + public static void showWaitingDialog(Context context) { + if (waitingDialog == null) { + waitingDialog = new AlertDialog.Builder(context, R.style.TransparentDialog).create(); + waitingDialog.getWindow().setBackgroundDrawable(new ColorDrawable()); + waitingDialog.setCancelable(false); + waitingDialog.setCanceledOnTouchOutside(false); + } + waitingDialog.show(); + waitingDialog.setContentView(R.layout.layout_loading); + } + + public static void hideWaitingDialog() { + if (waitingDialog != null && waitingDialog.isShowing()) { + waitingDialog.dismiss(); + waitingDialog = null; + } + } +} diff --git a/common/src/main/res/drawable/btn_style.xml b/common/src/main/res/drawable/btn_style.xml new file mode 100644 index 0000000..165cf7f --- /dev/null +++ b/common/src/main/res/drawable/btn_style.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/common/src/main/res/layout/layout_loading.xml b/common/src/main/res/layout/layout_loading.xml new file mode 100644 index 0000000..79f9144 --- /dev/null +++ b/common/src/main/res/layout/layout_loading.xml @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/common/src/main/res/values/colors.xml b/common/src/main/res/values/colors.xml new file mode 100644 index 0000000..925492d --- /dev/null +++ b/common/src/main/res/values/colors.xml @@ -0,0 +1,7 @@ + + + #FF000000 + #FFFFFFFF + #FF57B5F9 + #FF3700B3 + \ No newline at end of file diff --git a/common/src/main/res/values/strings.xml b/common/src/main/res/values/strings.xml new file mode 100644 index 0000000..aad3597 --- /dev/null +++ b/common/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + common + \ No newline at end of file diff --git a/common/src/main/res/values/themes.xml b/common/src/main/res/values/themes.xml new file mode 100644 index 0000000..0329dc6 --- /dev/null +++ b/common/src/main/res/values/themes.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 5268527..feff62e 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip diff --git a/imlib/AndroidManifest.xml b/imlib/AndroidManifest.xml new file mode 100644 index 0000000..ddef30d --- /dev/null +++ b/imlib/AndroidManifest.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/imlib/build.gradle b/imlib/build.gradle new file mode 100644 index 0000000..b2ab66c --- /dev/null +++ b/imlib/build.gradle @@ -0,0 +1,24 @@ +apply plugin: 'com.android.library' + +android { + compileSdkVersion 31 + + defaultConfig { + minSdkVersion 19 + targetSdkVersion 31 + versionName "5.2.1.55" + } + + sourceSets { + main { + manifest.srcFile 'AndroidManifest.xml' + res.srcDirs = ['res'] + jniLibs.srcDirs = ['libs'] + } + } +} + +dependencies { + api fileTree(dir: 'libs', include: ['*.jar','*.aar']) + api 'com.google.code.gson:gson:2.8.6' +} diff --git a/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4.bin b/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4.bin new file mode 100644 index 0000000..0d259dd --- /dev/null +++ b/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4.bin @@ -0,0 +1 @@ +o/classes diff --git a/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4/classes/classes.dex b/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4/classes/classes.dex new file mode 100644 index 0000000..38c2be9 Binary files /dev/null and b/imlib/build/.transforms/0ae089fd9b15038c563927d4c9c465d4/classes/classes.dex 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 new file mode 100644 index 0000000..9a74817 --- /dev/null +++ b/imlib/build/generated/source/buildConfig/debug/io/rong/libcore/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * 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 new file mode 100644 index 0000000..e19b4ce --- /dev/null +++ b/imlib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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 new file mode 100644 index 0000000..b56dbc1 --- /dev/null +++ b/imlib/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"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 new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/imlib/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ 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 new file mode 100644 index 0000000..e69de29 diff --git a/imlib/build/intermediates/compile_library_classes/debug/classes.jar b/imlib/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000..bd1e09d Binary files /dev/null and b/imlib/build/intermediates/compile_library_classes/debug/classes.jar 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 new file mode 100644 index 0000000..5252690 Binary files /dev/null and b/imlib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/imlib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar b/imlib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar new file mode 100644 index 0000000..e978e37 Binary files /dev/null and b/imlib/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar differ diff --git a/imlib/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/imlib/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000..6a14855 Binary files /dev/null and b/imlib/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/imlib/build/intermediates/incremental/debug-mergeJniLibs/merge-state b/imlib/build/intermediates/incremental/debug-mergeJniLibs/merge-state new file mode 100644 index 0000000..62adc2c Binary files /dev/null and b/imlib/build/intermediates/incremental/debug-mergeJniLibs/merge-state differ diff --git a/imlib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/imlib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000..f2fa067 --- /dev/null +++ b/imlib/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/mergeDebugShaders/merger.xml b/imlib/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..95d39e9 --- /dev/null +++ b/imlib/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/imlib/build/intermediates/incremental/packageDebugAssets/merger.xml b/imlib/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000..ae437ee --- /dev/null +++ b/imlib/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ 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 new file mode 100644 index 0000000..e3d67a9 --- /dev/null +++ b/imlib/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1 @@ +#Thu Jul 20 17:08:15 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 new file mode 100644 index 0000000..f871d2a --- /dev/null +++ b/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-ar-rIL/values-ar-rIL.xml @@ -0,0 +1,10 @@ + + + فشل الاتصال بخدمة العميل + تم مشاركة الموقع + رسالة جديدة + رسائل %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 new file mode 100644 index 0000000..85db042 --- /dev/null +++ b/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-en/values-en.xml @@ -0,0 +1,11 @@ + + + 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 new file mode 100644 index 0000000..c396347 --- /dev/null +++ b/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values-sw/values-sw.xml @@ -0,0 +1,6 @@ + + + %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 new file mode 100644 index 0000000..d1fb559 --- /dev/null +++ b/imlib/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,32 @@ + + + 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 new file mode 100644 index 0000000..a10e325 --- /dev/null +++ b/imlib/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + +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 new file mode 100644 index 0000000..dd3381e Binary files /dev/null and b/imlib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libRongIMLib.so 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 new file mode 100644 index 0000000..687ef3e Binary files /dev/null and b/imlib/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libsqlite.so 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 new file mode 100644 index 0000000..e36bfd0 Binary files /dev/null and b/imlib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libRongIMLib.so 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 new file mode 100644 index 0000000..6a1815f Binary files /dev/null and b/imlib/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libsqlite.so 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 new file mode 100644 index 0000000..58eec8c Binary files /dev/null and b/imlib/build/intermediates/intermediate-jars/debug/jni/x86/libRongIMLib.so 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 new file mode 100644 index 0000000..c712ff6 Binary files /dev/null and b/imlib/build/intermediates/intermediate-jars/debug/jni/x86/libsqlite.so 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 new file mode 100644 index 0000000..ed9cbcb Binary files /dev/null and b/imlib/build/intermediates/intermediate-jars/debug/jni/x86_64/libRongIMLib.so 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 new file mode 100644 index 0000000..25b8309 Binary files /dev/null and b/imlib/build/intermediates/intermediate-jars/debug/jni/x86_64/libsqlite.so 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 new file mode 100644 index 0000000..c41f433 Binary files /dev/null and b/imlib/build/intermediates/javac/debug/classes/io/rong/libcore/BuildConfig.class differ diff --git a/imlib/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/rong/libcore/BuildConfig.class b/imlib/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/rong/libcore/BuildConfig.class new file mode 100644 index 0000000..b736712 Binary files /dev/null and b/imlib/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/io/rong/libcore/BuildConfig.class 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 new file mode 100644 index 0000000..1621624 Binary files /dev/null and b/imlib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libRongIMLib.so 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 new file mode 100644 index 0000000..ddc47a0 Binary files /dev/null and b/imlib/build/intermediates/library_and_local_jars_jni/debug/arm64-v8a/libsqlite.so 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 new file mode 100644 index 0000000..5a379ed Binary files /dev/null and b/imlib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libRongIMLib.so 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 new file mode 100644 index 0000000..27cc05d Binary files /dev/null and b/imlib/build/intermediates/library_and_local_jars_jni/debug/armeabi-v7a/libsqlite.so 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 new file mode 100644 index 0000000..9797693 Binary files /dev/null and b/imlib/build/intermediates/library_and_local_jars_jni/debug/x86/libRongIMLib.so 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 new file mode 100644 index 0000000..0bef3c6 Binary files /dev/null and b/imlib/build/intermediates/library_and_local_jars_jni/debug/x86/libsqlite.so 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 new file mode 100644 index 0000000..44464e8 Binary files /dev/null and b/imlib/build/intermediates/library_and_local_jars_jni/debug/x86_64/libRongIMLib.so 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 new file mode 100644 index 0000000..bd30960 Binary files /dev/null and b/imlib/build/intermediates/library_and_local_jars_jni/debug/x86_64/libsqlite.so differ diff --git a/imlib/build/intermediates/library_java_res/debug/res.jar b/imlib/build/intermediates/library_java_res/debug/res.jar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/imlib/build/intermediates/library_java_res/debug/res.jar differ diff --git a/imlib/build/intermediates/library_manifest/debug/AndroidManifest.xml b/imlib/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000..e900c2b --- /dev/null +++ b/imlib/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file 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 new file mode 100644 index 0000000..1621624 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libRongIMLib.so 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 new file mode 100644 index 0000000..ddc47a0 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libsqlite.so 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 new file mode 100644 index 0000000..5a379ed Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libRongIMLib.so 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 new file mode 100644 index 0000000..27cc05d Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libsqlite.so 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 new file mode 100644 index 0000000..363fb1a Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_chatroom_5.2.1.55.aar 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 new file mode 100644 index 0000000..add8def Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_customservice_5.2.1.55.aar 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 new file mode 100644 index 0000000..6149fbf Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_discussion_5.2.1.55.aar 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 new file mode 100644 index 0000000..d5c0b43 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_imlib_5.2.1.55.jar 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 new file mode 100644 index 0000000..6792b9e Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_imlibcore_5.2.1.55.jar 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 new file mode 100644 index 0000000..1d5b3c0 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_location_5.2.1.55.aar 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 new file mode 100644 index 0000000..3761978 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/rong_publicservice_5.2.1.55.aar 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 new file mode 100644 index 0000000..9797693 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/x86/libRongIMLib.so 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 new file mode 100644 index 0000000..0bef3c6 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/x86/libsqlite.so 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 new file mode 100644 index 0000000..44464e8 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/x86_64/libRongIMLib.so 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 new file mode 100644 index 0000000..bd30960 Binary files /dev/null and b/imlib/build/intermediates/merged_jni_libs/debug/out/x86_64/libsqlite.so differ diff --git a/imlib/build/intermediates/merged_manifests/debug/output.json b/imlib/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000..db3072d --- /dev/null +++ b/imlib/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"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/packaged-classes/debug/classes.jar b/imlib/build/intermediates/packaged-classes/debug/classes.jar new file mode 100644 index 0000000..c8324fe Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/classes.jar differ diff --git a/imlib/build/intermediates/packaged-classes/debug/libs/rong_chatroom_5.2.1.55.aar b/imlib/build/intermediates/packaged-classes/debug/libs/rong_chatroom_5.2.1.55.aar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/libs/rong_chatroom_5.2.1.55.aar differ diff --git a/imlib/build/intermediates/packaged-classes/debug/libs/rong_customservice_5.2.1.55.aar b/imlib/build/intermediates/packaged-classes/debug/libs/rong_customservice_5.2.1.55.aar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/libs/rong_customservice_5.2.1.55.aar differ diff --git a/imlib/build/intermediates/packaged-classes/debug/libs/rong_discussion_5.2.1.55.aar b/imlib/build/intermediates/packaged-classes/debug/libs/rong_discussion_5.2.1.55.aar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/libs/rong_discussion_5.2.1.55.aar differ diff --git a/imlib/build/intermediates/packaged-classes/debug/libs/rong_imlib_5.2.1.55.jar b/imlib/build/intermediates/packaged-classes/debug/libs/rong_imlib_5.2.1.55.jar new file mode 100644 index 0000000..8d48592 Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/libs/rong_imlib_5.2.1.55.jar differ diff --git a/imlib/build/intermediates/packaged-classes/debug/libs/rong_imlibcore_5.2.1.55.jar b/imlib/build/intermediates/packaged-classes/debug/libs/rong_imlibcore_5.2.1.55.jar new file mode 100644 index 0000000..a75683c Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/libs/rong_imlibcore_5.2.1.55.jar differ diff --git a/imlib/build/intermediates/packaged-classes/debug/libs/rong_locationKit_5.2.1.55.aar b/imlib/build/intermediates/packaged-classes/debug/libs/rong_locationKit_5.2.1.55.aar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/libs/rong_locationKit_5.2.1.55.aar differ diff --git a/imlib/build/intermediates/packaged-classes/debug/libs/rong_location_5.2.1.55.aar b/imlib/build/intermediates/packaged-classes/debug/libs/rong_location_5.2.1.55.aar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/libs/rong_location_5.2.1.55.aar differ diff --git a/imlib/build/intermediates/packaged-classes/debug/libs/rong_publicservice_5.2.1.55.aar b/imlib/build/intermediates/packaged-classes/debug/libs/rong_publicservice_5.2.1.55.aar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/imlib/build/intermediates/packaged-classes/debug/libs/rong_publicservice_5.2.1.55.aar 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 new file mode 100644 index 0000000..f871d2a --- /dev/null +++ b/imlib/build/intermediates/packaged_res/debug/values-ar-rIL/values-ar-rIL.xml @@ -0,0 +1,10 @@ + + + فشل الاتصال بخدمة العميل + تم مشاركة الموقع + رسالة جديدة + رسائل %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 new file mode 100644 index 0000000..85db042 --- /dev/null +++ b/imlib/build/intermediates/packaged_res/debug/values-en/values-en.xml @@ -0,0 +1,11 @@ + + + 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 new file mode 100644 index 0000000..c396347 --- /dev/null +++ b/imlib/build/intermediates/packaged_res/debug/values-sw/values-sw.xml @@ -0,0 +1,6 @@ + + + %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 new file mode 100644 index 0000000..d1fb559 --- /dev/null +++ b/imlib/build/intermediates/packaged_res/debug/values/values.xml @@ -0,0 +1,32 @@ + + + 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 new file mode 100644 index 0000000..b7981ef --- /dev/null +++ b/imlib/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,332 @@ +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 new file mode 100644 index 0000000..bd1e09d Binary files /dev/null and b/imlib/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/imlib/build/intermediates/symbols/debug/R.txt b/imlib/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000..aa3b6a8 --- /dev/null +++ b/imlib/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,379 @@ +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/intermediates/transforms/mergeJavaRes/debug/0.jar b/imlib/build/intermediates/transforms/mergeJavaRes/debug/0.jar new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJavaRes/debug/0.jar differ diff --git a/imlib/build/intermediates/transforms/mergeJavaRes/debug/__content__.json b/imlib/build/intermediates/transforms/mergeJavaRes/debug/__content__.json new file mode 100644 index 0000000..a6c7c93 --- /dev/null +++ b/imlib/build/intermediates/transforms/mergeJavaRes/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["RESOURCES"],"format":"JAR","present":true}] \ No newline at end of file diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libRongIMLib.so b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libRongIMLib.so new file mode 100644 index 0000000..1621624 Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libRongIMLib.so differ diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libsqlite.so b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libsqlite.so new file mode 100644 index 0000000..ddc47a0 Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libsqlite.so differ diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libRongIMLib.so b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libRongIMLib.so new file mode 100644 index 0000000..5a379ed Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libRongIMLib.so differ diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libsqlite.so b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libsqlite.so new file mode 100644 index 0000000..27cc05d Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libsqlite.so differ diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libRongIMLib.so b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libRongIMLib.so new file mode 100644 index 0000000..9797693 Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libRongIMLib.so differ diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libsqlite.so b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libsqlite.so new file mode 100644 index 0000000..0bef3c6 Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86/libsqlite.so differ diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libRongIMLib.so b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libRongIMLib.so new file mode 100644 index 0000000..44464e8 Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libRongIMLib.so differ diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libsqlite.so b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libsqlite.so new file mode 100644 index 0000000..bd30960 Binary files /dev/null and b/imlib/build/intermediates/transforms/mergeJniLibs/debug/0/lib/x86_64/libsqlite.so differ diff --git a/imlib/build/intermediates/transforms/mergeJniLibs/debug/__content__.json b/imlib/build/intermediates/transforms/mergeJniLibs/debug/__content__.json new file mode 100644 index 0000000..0a6aa0f --- /dev/null +++ b/imlib/build/intermediates/transforms/mergeJniLibs/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"resources","index":0,"scopes":["PROJECT"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/imlib/build/outputs/aar/imlib-debug.aar b/imlib/build/outputs/aar/imlib-debug.aar new file mode 100644 index 0000000..e9ea075 Binary files /dev/null and b/imlib/build/outputs/aar/imlib-debug.aar differ diff --git a/imlib/build/outputs/logs/manifest-merger-debug-report.txt b/imlib/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000..e58bf0d --- /dev/null +++ b/imlib/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,157 @@ +-- 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/imlib/libs/arm64-v8a/libRongIMLib.so b/imlib/libs/arm64-v8a/libRongIMLib.so new file mode 100644 index 0000000..1621624 Binary files /dev/null and b/imlib/libs/arm64-v8a/libRongIMLib.so differ diff --git a/imlib/libs/arm64-v8a/libsqlite.so b/imlib/libs/arm64-v8a/libsqlite.so new file mode 100644 index 0000000..ddc47a0 Binary files /dev/null and b/imlib/libs/arm64-v8a/libsqlite.so differ diff --git a/imlib/libs/armeabi-v7a/libRongIMLib.so b/imlib/libs/armeabi-v7a/libRongIMLib.so new file mode 100644 index 0000000..5a379ed Binary files /dev/null and b/imlib/libs/armeabi-v7a/libRongIMLib.so differ diff --git a/imlib/libs/armeabi-v7a/libsqlite.so b/imlib/libs/armeabi-v7a/libsqlite.so new file mode 100644 index 0000000..27cc05d Binary files /dev/null and b/imlib/libs/armeabi-v7a/libsqlite.so differ diff --git a/imlib/libs/rong_chatroom_5.2.1.55.aar b/imlib/libs/rong_chatroom_5.2.1.55.aar new file mode 100644 index 0000000..363fb1a Binary files /dev/null and b/imlib/libs/rong_chatroom_5.2.1.55.aar differ diff --git a/imlib/libs/rong_customservice_5.2.1.55.aar b/imlib/libs/rong_customservice_5.2.1.55.aar new file mode 100644 index 0000000..add8def Binary files /dev/null and b/imlib/libs/rong_customservice_5.2.1.55.aar differ diff --git a/imlib/libs/rong_discussion_5.2.1.55.aar b/imlib/libs/rong_discussion_5.2.1.55.aar new file mode 100644 index 0000000..6149fbf Binary files /dev/null and b/imlib/libs/rong_discussion_5.2.1.55.aar differ diff --git a/imlib/libs/rong_imlib_5.2.1.55.jar b/imlib/libs/rong_imlib_5.2.1.55.jar new file mode 100644 index 0000000..d5c0b43 Binary files /dev/null and b/imlib/libs/rong_imlib_5.2.1.55.jar differ diff --git a/imlib/libs/rong_imlibcore_5.2.1.55.jar b/imlib/libs/rong_imlibcore_5.2.1.55.jar new file mode 100644 index 0000000..6792b9e Binary files /dev/null and b/imlib/libs/rong_imlibcore_5.2.1.55.jar differ diff --git a/imlib/libs/rong_location_5.2.1.55.aar b/imlib/libs/rong_location_5.2.1.55.aar new file mode 100644 index 0000000..1d5b3c0 Binary files /dev/null and b/imlib/libs/rong_location_5.2.1.55.aar differ diff --git a/imlib/libs/rong_publicservice_5.2.1.55.aar b/imlib/libs/rong_publicservice_5.2.1.55.aar new file mode 100644 index 0000000..3761978 Binary files /dev/null and b/imlib/libs/rong_publicservice_5.2.1.55.aar differ diff --git a/imlib/libs/x86/libRongIMLib.so b/imlib/libs/x86/libRongIMLib.so new file mode 100644 index 0000000..9797693 Binary files /dev/null and b/imlib/libs/x86/libRongIMLib.so differ diff --git a/imlib/libs/x86/libsqlite.so b/imlib/libs/x86/libsqlite.so new file mode 100644 index 0000000..0bef3c6 Binary files /dev/null and b/imlib/libs/x86/libsqlite.so differ diff --git a/imlib/libs/x86_64/libRongIMLib.so b/imlib/libs/x86_64/libRongIMLib.so new file mode 100644 index 0000000..44464e8 Binary files /dev/null and b/imlib/libs/x86_64/libRongIMLib.so differ diff --git a/imlib/libs/x86_64/libsqlite.so b/imlib/libs/x86_64/libsqlite.so new file mode 100644 index 0000000..bd30960 Binary files /dev/null and b/imlib/libs/x86_64/libsqlite.so differ diff --git a/imlib/res/values-ar-rIL/rc_lib_string.xml b/imlib/res/values-ar-rIL/rc_lib_string.xml new file mode 100644 index 0000000..c94da8b --- /dev/null +++ b/imlib/res/values-ar-rIL/rc_lib_string.xml @@ -0,0 +1,6 @@ + + + تم ترك خدمة العميل + فشل الاتصال بخدمة العميل + تم مشاركة الموقع + \ No newline at end of file diff --git a/imlib/res/values-ar-rIL/rc_notification_string.xml b/imlib/res/values-ar-rIL/rc_notification_string.xml new file mode 100644 index 0000000..b62c870 --- /dev/null +++ b/imlib/res/values-ar-rIL/rc_notification_string.xml @@ -0,0 +1,8 @@ + + + + لقد تلقيت رسالة جديدة + رسائل %2$d أرسل %1$d + رسائل %2$d جهات اتصال %1$d + رسالة جديدة + \ No newline at end of file diff --git a/imlib/res/values-en/rc_lib_string.xml b/imlib/res/values-en/rc_lib_string.xml new file mode 100644 index 0000000..5e8d101 --- /dev/null +++ b/imlib/res/values-en/rc_lib_string.xml @@ -0,0 +1,8 @@ + + + + Custom Service Have Quit + Failed Connect Custom Service + Real-time Location session ended. + A location sharing message was received. + \ No newline at end of file diff --git a/imlib/res/values-en/rc_notification_string.xml b/imlib/res/values-en/rc_notification_string.xml new file mode 100644 index 0000000..f222ccf --- /dev/null +++ b/imlib/res/values-en/rc_notification_string.xml @@ -0,0 +1,9 @@ + + + + You have a new message + + %1$s sent %2$d messages + %1$d contacts sent %2$d messages + New Messages + \ No newline at end of file diff --git a/imlib/res/values-sw/rc_notification_string.xml b/imlib/res/values-sw/rc_notification_string.xml new file mode 100644 index 0000000..e316169 --- /dev/null +++ b/imlib/res/values-sw/rc_notification_string.xml @@ -0,0 +1,6 @@ + + + Umepokea Ujumbe Mpya + %1$s ametuma ujumbe  %2$d + Mrafiki.%1$d wametuma ujumbe  %2$d + \ No newline at end of file diff --git a/imlib/res/values/rc_configuration.xml b/imlib/res/values/rc_configuration.xml new file mode 100644 index 0000000..b916660 --- /dev/null +++ b/imlib/res/values/rc_configuration.xml @@ -0,0 +1,75 @@ + + + + 85 + + 1080 + + + 200 + + + 30 + + 240 + + 100 + + + 70 + + 408 + + 240 + + + false + + 6000 + + /RongCloud/Media/ + + true + + 150000 + + 1000 + + + + + + + + + + + + + + + 20971520 + + true + + false + + + 544 + + 960 + + + 240000 + \ No newline at end of file diff --git a/imlib/res/values/rc_lib_string.xml b/imlib/res/values/rc_lib_string.xml new file mode 100644 index 0000000..d3fd051 --- /dev/null +++ b/imlib/res/values/rc_lib_string.xml @@ -0,0 +1,12 @@ + + + + 客服已结束 + 连接客服失败 + 位置共享已结束 + 收到一条位置共享消息 + 你收到了一条新消息 + %1$s发来了%2$d条消息 + %1$d个联系人发来了%2$d条消息 + 新消息 + \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeCache.txt b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeCache.txt new file mode 100644 index 0000000..446d759 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeCache.txt @@ -0,0 +1,357 @@ +# This is the CMakeCache file. +# For build in directory: d:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a +# It was generated by CMake: C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ANDROID_ABI:UNINITIALIZED=arm64-v8a + +//No help, variable specified on the command line. +ANDROID_NDK:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 + +//No help, variable specified on the command line. +ANDROID_PLATFORM:UNINITIALIZED=android-19 + +//No help, variable specified on the command line. +CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=arm64-v8a + +//No help, variable specified on the command line. +CMAKE_ANDROID_NDK:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 + +//Archiver +CMAKE_AR:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ar.exe + +//Flags used by the compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING= + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING=Debug + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=CMAKE_CXX_COMPILER_AR-NOTFOUND + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=CMAKE_CXX_COMPILER_RANLIB-NOTFOUND + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING= + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=CMAKE_C_COMPILER_AR-NOTFOUND + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=CMAKE_C_COMPILER_RANLIB-NOTFOUND + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING= + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Project + +//No help, variable specified on the command line. +CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\arm64-v8a + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ld.exe + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Project + +//Ranlib +CMAKE_RANLIB:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ranlib.exe + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-strip.exe + +//No help, variable specified on the command line. +CMAKE_SYSTEM_NAME:UNINITIALIZED=Android + +//No help, variable specified on the command line. +CMAKE_SYSTEM_VERSION:UNINITIALIZED=19 + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp + +//Dependencies for the target +custom_frame_crypto_LIB_DEPENDS:STATIC=general;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21/liblog.so; + +//Path to a library. +log-lib:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21/liblog.so + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=d:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..a69e0ef --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "9.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ar.exe") +set(CMAKE_C_COMPILER_AR "CMAKE_C_COMPILER_AR-NOTFOUND") +set(CMAKE_RANLIB "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "CMAKE_C_COMPILER_RANLIB-NOTFOUND") +set(CMAKE_LINKER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ld.exe") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;dl;c;gcc;dl") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/aarch64;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib64;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..7a4d88a --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "9.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ar.exe") +set(CMAKE_CXX_COMPILER_AR "CMAKE_CXX_COMPILER_AR-NOTFOUND") +set(CMAKE_RANLIB "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "CMAKE_CXX_COMPILER_RANLIB-NOTFOUND") +set(CMAKE_LINKER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/aarch64-linux-android-ld.exe") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;gcc;dl;c;gcc;dl") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/aarch64;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib64;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..a6f8167 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..422aa38 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeSystem.cmake b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000..877a67b --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22621") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22621") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake") + +set(CMAKE_SYSTEM "Android-1") +set(CMAKE_SYSTEM_NAME "Android") +set(CMAKE_SYSTEM_VERSION "1") +set(CMAKE_SYSTEM_PROCESSOR "aarch64") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeOutput.log b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..c6a8d39 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeOutput.log @@ -0,0 +1,514 @@ +The target system is: Android - 1 - aarch64 +The host system is: Windows - 10.0.22621 - AMD64 +Determining if the C compiler works passed with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_4f7e7" +[1/2] Building C object CMakeFiles/cmTC_4f7e7.dir/testCCompiler.c.o +[2/2] Linking C executable cmTC_4f7e7 + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_f76b9" +[1/2] Building C object CMakeFiles/cmTC_f76b9.dir/CMakeCCompilerABI.c.o +[2/2] Linking C executable cmTC_f76b9 +Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn) +Target: aarch64-none-linux-android21 +Thread model: posix +InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin +Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android\4.9.x +Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x +Candidate multilib: .;@m64 +Selected multilib: .;@m64 + "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack -EL --fix-cortex-a53-843419 --warn-shared-textrel -z now -z relro -z max-page-size=4096 --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /system/bin/linker64 -o cmTC_f76b9 "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --no-undefined --gc-sections CMakeFiles/cmTC_f76b9.dir/CMakeCCompilerABI.c.o -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtend_android.o" + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(aarch64-linux-android-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_f76b9"] + ignore line: [[1/2] Building C object CMakeFiles/cmTC_f76b9.dir/CMakeCCompilerABI.c.o] + ignore line: [[2/2] Linking C executable cmTC_f76b9] + ignore line: [Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn)] + ignore line: [Target: aarch64-none-linux-android21] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin] + ignore line: [Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android\4.9.x] + ignore line: [Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Selected multilib: .] + ignore line: [@m64] + link line: [ "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack -EL --fix-cortex-a53-843419 --warn-shared-textrel -z now -z relro -z max-page-size=4096 --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /system/bin/linker64 -o cmTC_f76b9 "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --no-undefined --gc-sections CMakeFiles/cmTC_f76b9.dir/CMakeCCompilerABI.c.o -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtend_android.o"] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin\\ld] ==> ignore + arg [--sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot] ==> ignore + arg [-pie] ==> ignore + arg [-znoexecstack] ==> ignore + arg [-EL] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [--warn-shared-textrel] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-zmax-page-size=4096] ==> ignore + arg [--hash-style=both] ==> ignore + arg [--enable-new-dtags] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [aarch64linux] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/system/bin/linker64] ==> ignore + arg [-o] ==> ignore + arg [cmTC_f76b9] ==> ignore + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtbegin_dynamic.o] ==> ignore + arg [-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64] ==> dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + arg [--exclude-libs] ==> ignore + arg [libgcc.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libgcc_real.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libatomic.a] ==> ignore + arg [--build-id] ==> ignore + arg [--fatal-warnings] ==> ignore + arg [--no-undefined] ==> ignore + arg [--gc-sections] ==> ignore + arg [CMakeFiles/cmTC_f76b9.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtend_android.o] ==> ignore + collapse library dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/aarch64] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib64] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit libs: [gcc;dl;c;gcc;dl] + implicit dirs: [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/aarch64;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib64;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_e5b8b" +[1/2] Building C object CMakeFiles/cmTC_e5b8b.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_e5b8b + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_e7f9d" +[1/2] Building C object CMakeFiles/cmTC_e7f9d.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_e7f9d + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_36631" +[1/2] Building C object CMakeFiles/cmTC_36631.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_36631 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_b5e92" +[1/2] Building CXX object CMakeFiles/cmTC_b5e92.dir/testCXXCompiler.cxx.o +[2/2] Linking CXX executable cmTC_b5e92 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_25f82" +[1/2] Building CXX object CMakeFiles/cmTC_25f82.dir/CMakeCXXCompilerABI.cpp.o +[2/2] Linking CXX executable cmTC_25f82 +Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn) +Target: aarch64-none-linux-android21 +Thread model: posix +InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin +Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android\4.9.x +Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x +Candidate multilib: .;@m64 +Selected multilib: .;@m64 + "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack -EL --fix-cortex-a53-843419 --warn-shared-textrel -z now -z relro -z max-page-size=4096 --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /system/bin/linker64 -o cmTC_25f82 "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --no-undefined --gc-sections CMakeFiles/cmTC_25f82.dir/CMakeCXXCompilerABI.cpp.o -Bstatic -lc++ -Bdynamic -lm -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtend_android.o" + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(aarch64-linux-android-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_25f82"] + ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_25f82.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [[2/2] Linking CXX executable cmTC_25f82] + ignore line: [Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn)] + ignore line: [Target: aarch64-none-linux-android21] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin] + ignore line: [Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android\4.9.x] + ignore line: [Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Selected multilib: .] + ignore line: [@m64] + link line: [ "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack -EL --fix-cortex-a53-843419 --warn-shared-textrel -z now -z relro -z max-page-size=4096 --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /system/bin/linker64 -o cmTC_25f82 "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --no-undefined --gc-sections CMakeFiles/cmTC_25f82.dir/CMakeCXXCompilerABI.cpp.o -Bstatic -lc++ -Bdynamic -lm -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtend_android.o"] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin\\ld] ==> ignore + arg [--sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot] ==> ignore + arg [-pie] ==> ignore + arg [-znoexecstack] ==> ignore + arg [-EL] ==> ignore + arg [--fix-cortex-a53-843419] ==> ignore + arg [--warn-shared-textrel] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-zmax-page-size=4096] ==> ignore + arg [--hash-style=both] ==> ignore + arg [--enable-new-dtags] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [aarch64linux] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/system/bin/linker64] ==> ignore + arg [-o] ==> ignore + arg [cmTC_25f82] ==> ignore + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtbegin_dynamic.o] ==> ignore + arg [-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64] ==> dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + arg [--exclude-libs] ==> ignore + arg [libgcc.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libgcc_real.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libatomic.a] ==> ignore + arg [--build-id] ==> ignore + arg [--fatal-warnings] ==> ignore + arg [--no-undefined] ==> ignore + arg [--gc-sections] ==> ignore + arg [CMakeFiles/cmTC_25f82.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-Bstatic] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-Bdynamic] ==> ignore + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21\\crtend_android.o] ==> ignore + collapse library dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\aarch64] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/aarch64] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib/../lib64] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib64] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit libs: [c++;m;gcc;dl;c;gcc;dl] + implicit dirs: [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/aarch64;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/aarch64-linux-android/4.9.x;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib64;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/aarch64-linux-android/lib;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_b3ba4" +[1/2] Building CXX object CMakeFiles/cmTC_b3ba4.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_b3ba4 + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_fcf4d" +[1/2] Building CXX object CMakeFiles/cmTC_fcf4d.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_fcf4d + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_e3d34" +[1/2] Building CXX object CMakeFiles/cmTC_e3d34.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_e3d34 + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_674ff" +[1/2] Building CXX object CMakeFiles/cmTC_674ff.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_674ff + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/TargetDirectories.txt b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..f5fc241 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/edit_cache.dir +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/rebuild_cache.dir diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/cmake.check_cache b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o new file mode 100644 index 0000000..35ea52c Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o new file mode 100644 index 0000000..7f00aed Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o new file mode 100644 index 0000000..f520180 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o new file mode 100644 index 0000000..bc18ca7 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o new file mode 100644 index 0000000..96e756e Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.bin b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..ec058a1 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.c b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..90a87b1 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.cxx b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..703b335 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_aggregate_nsdmi) +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alias_templates) +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alignas) +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alignas) +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_attributes) +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_auto_type) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_binary_literals) +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_constexpr) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_contextual_conversions) +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_decltype) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_decltype_incomplete_return_types) +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_default_function_template_args) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_defaulted_functions) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_defaulted_functions) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_delegating_constructors) +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_deleted_functions) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_explicit_conversions) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_override_control) +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_generalized_initializers) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_inheriting_constructors) +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_lambdas) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_init_captures) +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_local_type_template_args) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_noexcept) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_nonstatic_member_init) +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_nullptr) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_override_control) +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_range_for) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_raw_string_literals) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_reference_qualified_functions) +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_relaxed_constexpr) +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_return_type_deduction) +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_rvalue_references) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_static_assert) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_strong_enums) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 199711L +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_thread_local) +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_trailing_return) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_unicode_literals) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_generalized_initializers) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_unrestricted_unions) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_user_literals) +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_variable_templates) +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_variadic_templates) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/android_gradle_build.json b/meeting1v1/.cxx/cmake/debug/arm64-v8a/android_gradle_build.json new file mode 100644 index 0000000..5cbd079 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/android_gradle_build.json @@ -0,0 +1,62 @@ +{ + "stringTable": { + "0": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a", + "1": "--target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11" + }, + "buildFiles": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\platforms.cmake", + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt" + ], + "cleanCommands": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\" clean" + ], + "buildTargetsCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\" {LIST_OF_TARGETS_TO_BUILD}", + "libraries": { + "custom_frame_crypto-Debug-arm64-v8a": { + "buildCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\" custom_frame_crypto", + "buildType": "debug", + "toolchain": "3866595253", + "abi": "arm64-v8a", + "artifactName": "custom_frame_crypto", + "files": [ + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + } + ], + "headers": [], + "output": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\arm64-v8a\\libcustom_frame_crypto.so" + } + }, + "toolchains": { + "3866595253": { + "cppCompilerExecutable": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" + } + }, + "cFileExtensions": [], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/android_gradle_build_mini.json b/meeting1v1/.cxx/cmake/debug/arm64-v8a/android_gradle_build_mini.json new file mode 100644 index 0000000..25831f9 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/android_gradle_build_mini.json @@ -0,0 +1,19 @@ +{ + "buildFiles": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\platforms.cmake", + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt" + ], + "cleanCommands": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\" clean" + ], + "buildTargetsCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\" {LIST_OF_TARGETS_TO_BUILD}", + "libraries": { + "custom_frame_crypto-Debug-arm64-v8a": { + "artifactName": "custom_frame_crypto", + "buildCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\" custom_frame_crypto", + "abi": "arm64-v8a", + "output": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\arm64-v8a\\libcustom_frame_crypto.so" + } + } +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/build.ninja b/meeting1v1/.cxx/cmake/debug/arm64-v8a/build.ninja new file mode 100644 index 0000000..f38e5f5 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/build.ninja @@ -0,0 +1,155 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: Project +# Configuration: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include rules.ninja + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\arm64-v8a && C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 +build edit_cache: phony CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for SHARED_LIBRARY target custom_frame_crypto + + +############################################# +# Order-only phony target for custom_frame_crypto + +build cmake_object_order_depends_target_custom_frame_crypto: phony +build CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_video_frame_decryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_video_frame_decryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_audio_frame_decryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_audio_frame_decryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_video_frame_encryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_video_frame_encryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_audio_frame_encryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_audio_frame_encryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/frame_crypto_jni.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\frame_crypto_jni.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir + +# ============================================================================= +# Link build statements for SHARED_LIBRARY target custom_frame_crypto + + +############################################# +# Link the shared library D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\arm64-v8a\libcustom_frame_crypto.so + +build D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/arm64-v8a/libcustom_frame_crypto.so: CXX_SHARED_LIBRARY_LINKER__custom_frame_crypto CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o | C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/aarch64-linux-android/21/liblog.so + LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info + LINK_FLAGS = -Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libgcc_real.a -Wl,--exclude-libs,libatomic.a -static-libstdc++ -Wl,--build-id -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments + LINK_LIBRARIES = -llog -latomic -lm + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + POST_BUILD = cd . + PRE_LINK = cd . + SONAME = libcustom_frame_crypto.so + SONAME_FLAG = -Wl,-soname, + TARGET_FILE = D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\arm64-v8a\libcustom_frame_crypto.so + TARGET_PDB = custom_frame_crypto.so.dbg + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\arm64-v8a && C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp -BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\arm64-v8a" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build rebuild_cache: phony CMakeFiles/rebuild_cache.util +# ============================================================================= +# Target aliases. + +build custom_frame_crypto: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/arm64-v8a/libcustom_frame_crypto.so +build libcustom_frame_crypto.so: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/arm64-v8a/libcustom_frame_crypto.so +# ============================================================================= +# Folder targets. + +# ============================================================================= +# ============================================================================= +# Built-in targets + + +############################################# +# The main all target. + +build all: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/arm64-v8a/libcustom_frame_crypto.so + +############################################# +# Make the all target the default. + +default all + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/CMakeLists.txt + pool = console + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/CMakeLists.txt: phony + +############################################# +# Clean all the built files. + +build clean: CLEAN + +############################################# +# Print all primary targets available. + +build help: HELP diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_command.txt b/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_command.txt new file mode 100644 index 0000000..d902730 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_command.txt @@ -0,0 +1,19 @@ +Executable : C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe +arguments : +-HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp +-BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\arm64-v8a +-DANDROID_ABI=arm64-v8a +-DANDROID_PLATFORM=android-19 +-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\arm64-v8a +-DCMAKE_BUILD_TYPE=Debug +-DANDROID_NDK=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 +-DCMAKE_SYSTEM_NAME=Android +-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a +-DCMAKE_SYSTEM_VERSION=19 +-DCMAKE_EXPORT_COMPILE_COMMANDS=ON +-DCMAKE_ANDROID_NDK=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 +-DCMAKE_TOOLCHAIN_FILE=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\build\cmake\android.toolchain.cmake +-G Ninja +-DCMAKE_MAKE_PROGRAM=C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe +jvmArgs : + diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_model.json b/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_model.json new file mode 100644 index 0000000..e6f61bd --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_model.json @@ -0,0 +1,69 @@ +{ + "variant": { + "module": { + "rootBuildGradleFolder": "D:\\StudioProjects\\UnionMedTV", + "sdkFolder": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk", + "isNativeCompilerSettingsCacheEnabled": false, + "isBuildOnlyTargetAbiEnabled": true, + "ideBuildTargetAbi": "arm64-v8a,armeabi-v7a,armeabi", + "splitsAbiFilterSet": [], + "intermediatesFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates", + "gradleModulePathName": ":meeting1v1", + "moduleRootFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1", + "makeFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt", + "buildSystem": "CMAKE", + "compilerSettingsCacheFolder": "D:\\StudioProjects\\UnionMedTV\\.cxx", + "cxxFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx", + "ndkFolder": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "ndkVersion": "21.4.7075529", + "ndkSupportedAbiList": [ + "ARMEABI_V7A", + "ARM64_V8A", + "X86", + "X86_64" + ], + "ndkDefaultAbiList": [ + "ARMEABI_V7A", + "ARM64_V8A", + "X86", + "X86_64" + ], + "cmakeToolchainFile": "." + }, + "buildSystemArgumentList": [], + "cFlagList": [], + "cppFlagsList": [], + "variantName": "debug", + "soFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\lib", + "objFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj", + "jsonFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug", + "gradleBuildOutputFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug", + "isDebuggableEnabled": true, + "validAbiList": [ + "ARM64_V8A", + "ARMEABI_V7A" + ], + "buildTargetSet": [] + }, + "abi": "ARM64_V8A", + "abiPlatformVersion": 19, + "cxxBuildFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a", + "jsonFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\\android_gradle_build.json", + "gradleBuildOutputFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\arm64-v8a", + "objFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\arm64-v8a", + "buildCommandFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\\build_command.txt", + "buildOutputFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\\build_output.txt", + "modelOutputFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\\build_model.json", + "cmake": { + "cmakeListsWrapperFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\arm64-v8a\\CMakeLists.txt", + "toolchainWrapperFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\arm64-v8a\\android_gradle_build.toolchain.cmake", + "buildGenerationStateFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\arm64-v8a\\build_generation_state.json", + "cacheKeyFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\arm64-v8a\\compiler_cache_key.json", + "compilerCacheUseFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\arm64-v8a\\compiler_cache_use.json", + "compilerCacheWriteFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\arm64-v8a\\compiler_cache_write.json", + "toolchainSettingsFromCacheFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\arm64-v8a\\compiler_settings_cache.cmake", + "cmakeWrappingBaseFolder": "." + }, + "jsonGenerationLoggingRecordFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\\json_generation_record.json", + "compileCommandsJsonFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\\compile_commands.json" +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_output.txt b/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_output.txt new file mode 100644 index 0000000..4f185e2 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/build_output.txt @@ -0,0 +1,13 @@ +Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +Detecting C compiler ABI info +Detecting C compiler ABI info - done +Detecting C compile features +Detecting C compile features - done +Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +Detecting CXX compiler ABI info +Detecting CXX compiler ABI info - done +Detecting CXX compile features +Detecting CXX compile features - done +Configuring done \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/cmake_install.cmake b/meeting1v1/.cxx/cmake/debug/arm64-v8a/cmake_install.cmake new file mode 100644 index 0000000..c141e47 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/cmake_server_log.txt b/meeting1v1/.cxx/cmake/debug/arm64-v8a/cmake_server_log.txt new file mode 100644 index 0000000..f04375e --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/cmake_server_log.txt @@ -0,0 +1,350 @@ +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"supportedProtocolVersions":[{"isExperimental":true,"major":1,"minor":1}],"type":"hello"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: { + "type": "handshake", + "cookie": "gradle-cmake-cookie", + "protocolVersion": { + "isExperimental": true, + "major": 1, + "minor": 1 + }, + "sourceDirectory": "D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp", + "buildDirectory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a", + "generator": "Ninja" +} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"gradle-cmake-cookie","inReplyTo":"handshake","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: { + "type": "configure", + "cacheArguments": [ + "", + "-DANDROID_ABI\u003darm64-v8a", + "-DANDROID_PLATFORM\u003dandroid-19", + "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dD:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\arm64-v8a", + "-DCMAKE_BUILD_TYPE\u003dDebug", + "-DANDROID_NDK\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "-DCMAKE_SYSTEM_NAME\u003dAndroid", + "-DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a", + "-DCMAKE_SYSTEM_VERSION\u003d19", + "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", + "-DCMAKE_ANDROID_NDK\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "-DCMAKE_TOOLCHAIN_FILE\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "-G Ninja", + "-DCMAKE_MAKE_PROGRAM\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe" + ] +} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":33,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compiler ABI info","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compiler ABI info +CMAKE SERVER: Detecting C compiler ABI info +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":65,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compiler ABI info - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compiler ABI info - done +CMAKE SERVER: Detecting C compiler ABI info - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compile features","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compile features +CMAKE SERVER: Detecting C compile features +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":96,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":126,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":155,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compile features - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compile features - done +CMAKE SERVER: Detecting C compile features - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":184,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compiler ABI info","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compiler ABI info +CMAKE SERVER: Detecting CXX compiler ABI info +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":211,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compiler ABI info - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compiler ABI info - done +CMAKE SERVER: Detecting CXX compiler ABI info - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compile features","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compile features +CMAKE SERVER: Detecting CXX compile features +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":237,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":262,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":287,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":311,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compile features - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compile features - done +CMAKE SERVER: Detecting CXX compile features - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":1000,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Configuring done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Configuring done +CMAKE SERVER: Configuring done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"compute"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","progressCurrent":1000,"progressMaximum":1000,"progressMessage":"Generating","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","message":"Generating done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Generating done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"cmakeInputs"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"buildFiles":[{"isCMake":true,"isTemporary":false,"sources":["C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in"]},{"isCMake":false,"isTemporary":false,"sources":["CMakeLists.txt","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake"]},{"isCMake":false,"isTemporary":true,"sources":["../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeSystem.cmake","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCCompiler.cmake","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCCompiler.cmake","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/arm64-v8a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake"]}],"cmakeRootDirectory":"C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10","cookie":"","inReplyTo":"cmakeInputs","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"codemodel"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"configurations":[{"name":"Debug","projects":[{"buildDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a","name":"Project","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","targets":[{"artifacts":["D:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/arm64-v8a/libcustom_frame_crypto.so"],"buildDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a","fileGroups":[{"compileFlags":"-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11","defines":["custom_frame_crypto_EXPORTS"],"includePath":[{"path":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include"}],"isGenerated":false,"language":"CXX","sources":["custom_video_frame_decryptor.cpp","custom_audio_frame_decryptor.cpp","custom_video_frame_encryptor.cpp","custom_audio_frame_encryptor.cpp","frame_crypto_jni.cpp"]}],"fullName":"libcustom_frame_crypto.so","linkFlags":"-Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libgcc_real.a -Wl,--exclude-libs,libatomic.a -static-libstdc++ -Wl,--build-id -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments","linkLibraries":"-llog -latomic -lm","linkerLanguage":"CXX","name":"custom_frame_crypto","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","sysroot":"C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot","type":"SHARED_LIBRARY"}]}]}],"cookie":"","inReplyTo":"codemodel","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/compile_commands.json b/meeting1v1/.cxx/cmake/debug/arm64-v8a/compile_commands.json new file mode 100644 index 0000000..767866d --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/compile_commands.json @@ -0,0 +1,31 @@ +[ +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_video_frame_decryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_audio_frame_decryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_video_frame_encryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_audio_frame_encryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/arm64-v8a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\frame_crypto_jni.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp" +} +] \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/json_generation_record.json b/meeting1v1/.cxx/cmake/debug/arm64-v8a/json_generation_record.json new file mode 100644 index 0000000..93799a7 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/json_generation_record.json @@ -0,0 +1,22 @@ +[ + { + "level": "INFO", + "message": "Start JSON generation. Platform version: 19 min SDK version: arm64-v8a" + }, + { + "level": "INFO", + "message": "Trying to locate CMake in local SDK repository." + }, + { + "level": "INFO", + "message": "- CMake found in SDK at \u0027C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\u0027 had version \u00273.10.2\u0027" + }, + { + "level": "INFO", + "message": "JSON \u0027D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\arm64-v8a\\android_gradle_build.json\u0027 was up-to-date" + }, + { + "level": "INFO", + "message": "JSON generation completed without problems" + } +] \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/arm64-v8a/rules.ninja b/meeting1v1/.cxx/cmake/debug/arm64-v8a/rules.ninja new file mode 100644 index 0000000..db8bbda --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/arm64-v8a/rules.ninja @@ -0,0 +1,64 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: Project +# Configuration: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__custom_frame_crypto + depfile = $DEP_FILE + deps = gcc + command = C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__custom_frame_crypto + command = cmd.exe /C "$PRE_LINK && C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=aarch64-none-linux-android21 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp -BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\arm64-v8a + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe -t clean + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe -t targets + description = All primary targets available: + diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/.ninja_deps b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/.ninja_deps new file mode 100644 index 0000000..e4082ca Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/.ninja_deps differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/.ninja_log b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/.ninja_log new file mode 100644 index 0000000..054ef78 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/.ninja_log @@ -0,0 +1,7 @@ +# ninja log v5 +1 3028 711547703 CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o 919c3486d891eb7 +14 3047 711547703 CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o 3cbf83670490b386 +143 3058 711547703 CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o ea4ba39d2846d6fc +198 3102 711547703 CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o df2494bd34845632 +28 3215 711547703 CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o 4daad837a49a36d +3215 3364 711547703 D:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so b2a9872ea0773754 diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeCache.txt b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeCache.txt new file mode 100644 index 0000000..d278a7c --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeCache.txt @@ -0,0 +1,357 @@ +# This is the CMakeCache file. +# For build in directory: d:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a +# It was generated by CMake: C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ANDROID_ABI:UNINITIALIZED=armeabi-v7a + +//No help, variable specified on the command line. +ANDROID_NDK:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 + +//No help, variable specified on the command line. +ANDROID_PLATFORM:UNINITIALIZED=android-19 + +//No help, variable specified on the command line. +CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=armeabi-v7a + +//No help, variable specified on the command line. +CMAKE_ANDROID_NDK:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 + +//Archiver +CMAKE_AR:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ar.exe + +//Flags used by the compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING= + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING=Debug + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=CMAKE_CXX_COMPILER_AR-NOTFOUND + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=CMAKE_CXX_COMPILER_RANLIB-NOTFOUND + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING= + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=CMAKE_C_COMPILER_AR-NOTFOUND + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=CMAKE_C_COMPILER_RANLIB-NOTFOUND + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING= + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Project + +//No help, variable specified on the command line. +CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\armeabi-v7a + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ld.exe + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Project + +//Ranlib +CMAKE_RANLIB:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ranlib.exe + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-strip.exe + +//No help, variable specified on the command line. +CMAKE_SYSTEM_NAME:UNINITIALIZED=Android + +//No help, variable specified on the command line. +CMAKE_SYSTEM_VERSION:UNINITIALIZED=19 + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp + +//Dependencies for the target +custom_frame_crypto_LIB_DEPENDS:STATIC=general;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19/liblog.so; + +//Path to a library. +log-lib:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19/liblog.so + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=d:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..f841adc --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "9.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ar.exe") +set(CMAKE_C_COMPILER_AR "CMAKE_C_COMPILER_AR-NOTFOUND") +set(CMAKE_RANLIB "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "CMAKE_C_COMPILER_RANLIB-NOTFOUND") +set(CMAKE_LINKER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ld.exe") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;dl;c;gcc;dl") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/arm;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/arm-linux-androideabi/lib/armv7-a/thumb;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..d053be8 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "9.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ar.exe") +set(CMAKE_CXX_COMPILER_AR "CMAKE_CXX_COMPILER_AR-NOTFOUND") +set(CMAKE_RANLIB "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "CMAKE_CXX_COMPILER_RANLIB-NOTFOUND") +set(CMAKE_LINKER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/arm-linux-androideabi-ld.exe") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;gcc;dl;c;gcc;dl") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/arm;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/arm-linux-androideabi/lib/armv7-a/thumb;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..ed41eb2 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..316119d Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeSystem.cmake b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000..ce2c22a --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22621") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22621") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake") + +set(CMAKE_SYSTEM "Android-1") +set(CMAKE_SYSTEM_NAME "Android") +set(CMAKE_SYSTEM_VERSION "1") +set(CMAKE_SYSTEM_PROCESSOR "armv7-a") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeOutput.log b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..6ba1034 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeOutput.log @@ -0,0 +1,542 @@ +The target system is: Android - 1 - armv7-a +The host system is: Windows - 10.0.22621 - AMD64 +Determining if the C compiler works passed with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_a5818" +[1/2] Building C object CMakeFiles/cmTC_a5818.dir/testCCompiler.c.o +[2/2] Linking C executable cmTC_a5818 + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_5137f" +[1/2] Building C object CMakeFiles/cmTC_5137f.dir/CMakeCCompilerABI.c.o +[2/2] Linking C executable cmTC_5137f +Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn) +Target: armv7-none-linux-android19 +Thread model: posix +InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin +Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi\4.9.x +Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x +Candidate multilib: thumb;@mthumb +Candidate multilib: armv7-a;@march=armv7-a +Candidate multilib: armv7-a/thumb;@march=armv7-a@mthumb +Candidate multilib: .; +Selected multilib: armv7-a/thumb;@march=armv7-a@mthumb + "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack -EL --warn-shared-textrel -z now -z relro -X --hash-style=both --enable-new-dtags --eh-frame-hdr -m armelf_linux_eabi -dynamic-linker /system/bin/linker -o cmTC_5137f "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --exclude-libs libunwind.a --no-undefined --gc-sections CMakeFiles/cmTC_5137f.dir/CMakeCCompilerABI.c.o -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtend_android.o" + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(arm-linux-androideabi-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_5137f"] + ignore line: [[1/2] Building C object CMakeFiles/cmTC_5137f.dir/CMakeCCompilerABI.c.o] + ignore line: [[2/2] Linking C executable cmTC_5137f] + ignore line: [Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn)] + ignore line: [Target: armv7-none-linux-android19] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin] + ignore line: [Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi\4.9.x] + ignore line: [Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x] + ignore line: [Candidate multilib: thumb] + ignore line: [@mthumb] + ignore line: [Candidate multilib: armv7-a] + ignore line: [@march=armv7-a] + ignore line: [Candidate multilib: armv7-a/thumb] + ignore line: [@march=armv7-a@mthumb] + ignore line: [Candidate multilib: .] + ignore line: [] + ignore line: [Selected multilib: armv7-a/thumb] + ignore line: [@march=armv7-a@mthumb] + link line: [ "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack -EL --warn-shared-textrel -z now -z relro -X --hash-style=both --enable-new-dtags --eh-frame-hdr -m armelf_linux_eabi -dynamic-linker /system/bin/linker -o cmTC_5137f "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --exclude-libs libunwind.a --no-undefined --gc-sections CMakeFiles/cmTC_5137f.dir/CMakeCCompilerABI.c.o -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtend_android.o"] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin\\ld] ==> ignore + arg [--sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot] ==> ignore + arg [-pie] ==> ignore + arg [-znoexecstack] ==> ignore + arg [-EL] ==> ignore + arg [--warn-shared-textrel] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-X] ==> ignore + arg [--hash-style=both] ==> ignore + arg [--enable-new-dtags] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [armelf_linux_eabi] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/system/bin/linker] ==> ignore + arg [-o] ==> ignore + arg [cmTC_5137f] ==> ignore + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtbegin_dynamic.o] ==> ignore + arg [-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm] ==> dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + arg [--exclude-libs] ==> ignore + arg [libgcc.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libgcc_real.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libatomic.a] ==> ignore + arg [--build-id] ==> ignore + arg [--fatal-warnings] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libunwind.a] ==> ignore + arg [--no-undefined] ==> ignore + arg [--gc-sections] ==> ignore + arg [CMakeFiles/cmTC_5137f.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtend_android.o] ==> ignore + collapse library dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/arm] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/arm-linux-androideabi/lib/armv7-a/thumb] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/arm-linux-androideabi/lib/armv7-a/thumb] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit libs: [gcc;dl;c;gcc;dl] + implicit dirs: [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/arm;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/arm-linux-androideabi/lib/armv7-a/thumb;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_7e248" +[1/2] Building C object CMakeFiles/cmTC_7e248.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_7e248 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_cc0a2" +[1/2] Building C object CMakeFiles/cmTC_cc0a2.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_cc0a2 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_883c2" +[1/2] Building C object CMakeFiles/cmTC_883c2.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_883c2 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_dc4b1" +[1/2] Building CXX object CMakeFiles/cmTC_dc4b1.dir/testCXXCompiler.cxx.o +[2/2] Linking CXX executable cmTC_dc4b1 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_b42bb" +[1/2] Building CXX object CMakeFiles/cmTC_b42bb.dir/CMakeCXXCompilerABI.cpp.o +[2/2] Linking CXX executable cmTC_b42bb +Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn) +Target: armv7-none-linux-android19 +Thread model: posix +InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin +Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi\4.9.x +Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x +Candidate multilib: thumb;@mthumb +Candidate multilib: armv7-a;@march=armv7-a +Candidate multilib: armv7-a/thumb;@march=armv7-a@mthumb +Candidate multilib: .; +Selected multilib: armv7-a/thumb;@march=armv7-a@mthumb + "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack -EL --warn-shared-textrel -z now -z relro -X --hash-style=both --enable-new-dtags --eh-frame-hdr -m armelf_linux_eabi -dynamic-linker /system/bin/linker -o cmTC_b42bb "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --exclude-libs libunwind.a --no-undefined --gc-sections CMakeFiles/cmTC_b42bb.dir/CMakeCXXCompilerABI.cpp.o -Bstatic -lc++ -Bdynamic -lm -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtend_android.o" + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(arm-linux-androideabi-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_b42bb"] + ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_b42bb.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [[2/2] Linking CXX executable cmTC_b42bb] + ignore line: [Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn)] + ignore line: [Target: armv7-none-linux-android19] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin] + ignore line: [Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi\4.9.x] + ignore line: [Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x] + ignore line: [Candidate multilib: thumb] + ignore line: [@mthumb] + ignore line: [Candidate multilib: armv7-a] + ignore line: [@march=armv7-a] + ignore line: [Candidate multilib: armv7-a/thumb] + ignore line: [@march=armv7-a@mthumb] + ignore line: [Candidate multilib: .] + ignore line: [] + ignore line: [Selected multilib: armv7-a/thumb] + ignore line: [@march=armv7-a@mthumb] + link line: [ "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack -EL --warn-shared-textrel -z now -z relro -X --hash-style=both --enable-new-dtags --eh-frame-hdr -m armelf_linux_eabi -dynamic-linker /system/bin/linker -o cmTC_b42bb "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --exclude-libs libunwind.a --no-undefined --gc-sections CMakeFiles/cmTC_b42bb.dir/CMakeCXXCompilerABI.cpp.o -Bstatic -lc++ -Bdynamic -lm -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtend_android.o"] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/bin\\ld] ==> ignore + arg [--sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot] ==> ignore + arg [-pie] ==> ignore + arg [-znoexecstack] ==> ignore + arg [-EL] ==> ignore + arg [--warn-shared-textrel] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-X] ==> ignore + arg [--hash-style=both] ==> ignore + arg [--enable-new-dtags] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [armelf_linux_eabi] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/system/bin/linker] ==> ignore + arg [-o] ==> ignore + arg [cmTC_b42bb] ==> ignore + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtbegin_dynamic.o] ==> ignore + arg [-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm] ==> dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + arg [--exclude-libs] ==> ignore + arg [libgcc.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libgcc_real.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libatomic.a] ==> ignore + arg [--build-id] ==> ignore + arg [--fatal-warnings] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libunwind.a] ==> ignore + arg [--no-undefined] ==> ignore + arg [--gc-sections] ==> ignore + arg [CMakeFiles/cmTC_b42bb.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-Bstatic] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-Bdynamic] ==> ignore + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19\\crtend_android.o] ==> ignore + collapse library dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\arm] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/arm] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/../lib/armv7-a/thumb] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/arm-linux-androideabi/lib/armv7-a/thumb] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/../lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/../../lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/../../../../arm-linux-androideabi/lib/armv7-a/thumb] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/arm-linux-androideabi/lib/armv7-a/thumb] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit libs: [c++;m;gcc;dl;c;gcc;dl] + implicit dirs: [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/arm;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/armv7-a/thumb;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/arm-linux-androideabi/lib/armv7-a/thumb;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_bdb40" +[1/2] Building CXX object CMakeFiles/cmTC_bdb40.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_bdb40 + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_95a22" +[1/2] Building CXX object CMakeFiles/cmTC_95a22.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_95a22 + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_ea89e" +[1/2] Building CXX object CMakeFiles/cmTC_ea89e.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_ea89e + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_f4f13" +[1/2] Building CXX object CMakeFiles/cmTC_f4f13.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_f4f13 + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/TargetDirectories.txt b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..be9b9dd --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/edit_cache.dir +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/rebuild_cache.dir diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/cmake.check_cache b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o new file mode 100644 index 0000000..c1e6bcd Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o new file mode 100644 index 0000000..9c1c34e Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o new file mode 100644 index 0000000..0169068 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o new file mode 100644 index 0000000..531bcdf Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o new file mode 100644 index 0000000..b1e01e1 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.bin b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..56f3669 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..90a87b1 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.cxx b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..703b335 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_aggregate_nsdmi) +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alias_templates) +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alignas) +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alignas) +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_attributes) +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_auto_type) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_binary_literals) +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_constexpr) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_contextual_conversions) +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_decltype) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_decltype_incomplete_return_types) +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_default_function_template_args) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_defaulted_functions) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_defaulted_functions) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_delegating_constructors) +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_deleted_functions) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_explicit_conversions) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_override_control) +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_generalized_initializers) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_inheriting_constructors) +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_lambdas) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_init_captures) +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_local_type_template_args) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_noexcept) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_nonstatic_member_init) +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_nullptr) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_override_control) +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_range_for) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_raw_string_literals) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_reference_qualified_functions) +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_relaxed_constexpr) +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_return_type_deduction) +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_rvalue_references) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_static_assert) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_strong_enums) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 199711L +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_thread_local) +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_trailing_return) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_unicode_literals) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_generalized_initializers) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_unrestricted_unions) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_user_literals) +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_variable_templates) +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_variadic_templates) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build.json b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build.json new file mode 100644 index 0000000..d726464 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build.json @@ -0,0 +1,62 @@ +{ + "stringTable": { + "0": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a", + "1": "--target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11" + }, + "buildFiles": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\platforms.cmake", + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt" + ], + "cleanCommands": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\" clean" + ], + "buildTargetsCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\" {LIST_OF_TARGETS_TO_BUILD}", + "libraries": { + "custom_frame_crypto-Debug-armeabi-v7a": { + "buildCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\" custom_frame_crypto", + "buildType": "debug", + "toolchain": "3866595253", + "abi": "armeabi-v7a", + "artifactName": "custom_frame_crypto", + "files": [ + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + } + ], + "headers": [], + "output": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\armeabi-v7a\\libcustom_frame_crypto.so" + } + }, + "toolchains": { + "3866595253": { + "cppCompilerExecutable": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" + } + }, + "cFileExtensions": [], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_custom_frame_crypto_armeabi-v7a.command.txt b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_custom_frame_crypto_armeabi-v7a.command.txt new file mode 100644 index 0000000..b6a81e2 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_custom_frame_crypto_armeabi-v7a.command.txt @@ -0,0 +1,7 @@ +Executable : C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe +arguments : +-C +D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\armeabi-v7a +custom_frame_crypto +jvmArgs : + diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_custom_frame_crypto_armeabi-v7a.stderr.txt b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_custom_frame_crypto_armeabi-v7a.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_custom_frame_crypto_armeabi-v7a.stdout.txt b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_custom_frame_crypto_armeabi-v7a.stdout.txt new file mode 100644 index 0000000..74aa723 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_custom_frame_crypto_armeabi-v7a.stdout.txt @@ -0,0 +1,7 @@ +ninja: Entering directory `D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\armeabi-v7a' +[1/6] Building CXX object CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o +[2/6] Building CXX object CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o +[3/6] Building CXX object CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o +[4/6] Building CXX object CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o +[5/6] Building CXX object CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o +[6/6] Linking CXX shared library D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\armeabi-v7a\libcustom_frame_crypto.so diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_mini.json b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_mini.json new file mode 100644 index 0000000..eb718ca --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/android_gradle_build_mini.json @@ -0,0 +1,19 @@ +{ + "buildFiles": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\platforms.cmake", + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt" + ], + "cleanCommands": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\" clean" + ], + "buildTargetsCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\" {LIST_OF_TARGETS_TO_BUILD}", + "libraries": { + "custom_frame_crypto-Debug-armeabi-v7a": { + "artifactName": "custom_frame_crypto", + "buildCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\" custom_frame_crypto", + "abi": "armeabi-v7a", + "output": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\armeabi-v7a\\libcustom_frame_crypto.so" + } + } +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build.ninja b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build.ninja new file mode 100644 index 0000000..8413f3d --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build.ninja @@ -0,0 +1,155 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: Project +# Configuration: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include rules.ninja + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\armeabi-v7a && C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 +build edit_cache: phony CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for SHARED_LIBRARY target custom_frame_crypto + + +############################################# +# Order-only phony target for custom_frame_crypto + +build cmake_object_order_depends_target_custom_frame_crypto: phony +build CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_video_frame_decryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_video_frame_decryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_audio_frame_decryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_audio_frame_decryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_video_frame_encryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_video_frame_encryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_audio_frame_encryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_audio_frame_encryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/frame_crypto_jni.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\frame_crypto_jni.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir + +# ============================================================================= +# Link build statements for SHARED_LIBRARY target custom_frame_crypto + + +############################################# +# Link the shared library D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\armeabi-v7a\libcustom_frame_crypto.so + +build D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so: CXX_SHARED_LIBRARY_LINKER__custom_frame_crypto CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o | C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/arm-linux-androideabi/19/liblog.so + LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info + LINK_FLAGS = -Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libgcc_real.a -Wl,--exclude-libs,libatomic.a -static-libstdc++ -Wl,--build-id -Wl,--fatal-warnings -Wl,--exclude-libs,libunwind.a -Wl,--no-undefined -Qunused-arguments + LINK_LIBRARIES = -llog -latomic -lm + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + POST_BUILD = cd . + PRE_LINK = cd . + SONAME = libcustom_frame_crypto.so + SONAME_FLAG = -Wl,-soname, + TARGET_FILE = D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\armeabi-v7a\libcustom_frame_crypto.so + TARGET_PDB = custom_frame_crypto.so.dbg + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\armeabi-v7a && C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp -BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\armeabi-v7a" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build rebuild_cache: phony CMakeFiles/rebuild_cache.util +# ============================================================================= +# Target aliases. + +build custom_frame_crypto: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so +build libcustom_frame_crypto.so: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so +# ============================================================================= +# Folder targets. + +# ============================================================================= +# ============================================================================= +# Built-in targets + + +############################################# +# The main all target. + +build all: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so + +############################################# +# Make the all target the default. + +default all + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/CMakeLists.txt + pool = console + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/CMakeLists.txt: phony + +############################################# +# Clean all the built files. + +build clean: CLEAN + +############################################# +# Print all primary targets available. + +build help: HELP diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_command.txt b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_command.txt new file mode 100644 index 0000000..bcee40c --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_command.txt @@ -0,0 +1,19 @@ +Executable : C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe +arguments : +-HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp +-BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\armeabi-v7a +-DANDROID_ABI=armeabi-v7a +-DANDROID_PLATFORM=android-19 +-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\armeabi-v7a +-DCMAKE_BUILD_TYPE=Debug +-DANDROID_NDK=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 +-DCMAKE_SYSTEM_NAME=Android +-DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a +-DCMAKE_SYSTEM_VERSION=19 +-DCMAKE_EXPORT_COMPILE_COMMANDS=ON +-DCMAKE_ANDROID_NDK=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 +-DCMAKE_TOOLCHAIN_FILE=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\build\cmake\android.toolchain.cmake +-G Ninja +-DCMAKE_MAKE_PROGRAM=C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe +jvmArgs : + diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_model.json b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_model.json new file mode 100644 index 0000000..92a0d5e --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_model.json @@ -0,0 +1,69 @@ +{ + "variant": { + "module": { + "rootBuildGradleFolder": "D:\\StudioProjects\\UnionMedTV", + "sdkFolder": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk", + "isNativeCompilerSettingsCacheEnabled": false, + "isBuildOnlyTargetAbiEnabled": true, + "ideBuildTargetAbi": "arm64-v8a,armeabi-v7a,armeabi", + "splitsAbiFilterSet": [], + "intermediatesFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates", + "gradleModulePathName": ":meeting1v1", + "moduleRootFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1", + "makeFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt", + "buildSystem": "CMAKE", + "compilerSettingsCacheFolder": "D:\\StudioProjects\\UnionMedTV\\.cxx", + "cxxFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx", + "ndkFolder": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "ndkVersion": "21.4.7075529", + "ndkSupportedAbiList": [ + "ARMEABI_V7A", + "ARM64_V8A", + "X86", + "X86_64" + ], + "ndkDefaultAbiList": [ + "ARMEABI_V7A", + "ARM64_V8A", + "X86", + "X86_64" + ], + "cmakeToolchainFile": "." + }, + "buildSystemArgumentList": [], + "cFlagList": [], + "cppFlagsList": [], + "variantName": "debug", + "soFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\lib", + "objFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj", + "jsonFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug", + "gradleBuildOutputFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug", + "isDebuggableEnabled": true, + "validAbiList": [ + "ARM64_V8A", + "ARMEABI_V7A" + ], + "buildTargetSet": [] + }, + "abi": "ARMEABI_V7A", + "abiPlatformVersion": 19, + "cxxBuildFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a", + "jsonFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\\android_gradle_build.json", + "gradleBuildOutputFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\armeabi-v7a", + "objFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\armeabi-v7a", + "buildCommandFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\\build_command.txt", + "buildOutputFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\\build_output.txt", + "modelOutputFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\\build_model.json", + "cmake": { + "cmakeListsWrapperFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\armeabi-v7a\\CMakeLists.txt", + "toolchainWrapperFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\armeabi-v7a\\android_gradle_build.toolchain.cmake", + "buildGenerationStateFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\armeabi-v7a\\build_generation_state.json", + "cacheKeyFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\armeabi-v7a\\compiler_cache_key.json", + "compilerCacheUseFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\armeabi-v7a\\compiler_cache_use.json", + "compilerCacheWriteFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\armeabi-v7a\\compiler_cache_write.json", + "toolchainSettingsFromCacheFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\armeabi-v7a\\compiler_settings_cache.cmake", + "cmakeWrappingBaseFolder": "." + }, + "jsonGenerationLoggingRecordFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\\json_generation_record.json", + "compileCommandsJsonFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\\compile_commands.json" +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_output.txt b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_output.txt new file mode 100644 index 0000000..4f185e2 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/build_output.txt @@ -0,0 +1,13 @@ +Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +Detecting C compiler ABI info +Detecting C compiler ABI info - done +Detecting C compile features +Detecting C compile features - done +Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +Detecting CXX compiler ABI info +Detecting CXX compiler ABI info - done +Detecting CXX compile features +Detecting CXX compile features - done +Configuring done \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/cmake_install.cmake b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/cmake_install.cmake new file mode 100644 index 0000000..c40654d --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/cmake_server_log.txt b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/cmake_server_log.txt new file mode 100644 index 0000000..08b127d --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/cmake_server_log.txt @@ -0,0 +1,350 @@ +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"supportedProtocolVersions":[{"isExperimental":true,"major":1,"minor":1}],"type":"hello"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: { + "type": "handshake", + "cookie": "gradle-cmake-cookie", + "protocolVersion": { + "isExperimental": true, + "major": 1, + "minor": 1 + }, + "sourceDirectory": "D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp", + "buildDirectory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a", + "generator": "Ninja" +} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"gradle-cmake-cookie","inReplyTo":"handshake","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: { + "type": "configure", + "cacheArguments": [ + "", + "-DANDROID_ABI\u003darmeabi-v7a", + "-DANDROID_PLATFORM\u003dandroid-19", + "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dD:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\armeabi-v7a", + "-DCMAKE_BUILD_TYPE\u003dDebug", + "-DANDROID_NDK\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "-DCMAKE_SYSTEM_NAME\u003dAndroid", + "-DCMAKE_ANDROID_ARCH_ABI\u003darmeabi-v7a", + "-DCMAKE_SYSTEM_VERSION\u003d19", + "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", + "-DCMAKE_ANDROID_NDK\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "-DCMAKE_TOOLCHAIN_FILE\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "-G Ninja", + "-DCMAKE_MAKE_PROGRAM\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe" + ] +} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":33,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compiler ABI info","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compiler ABI info +CMAKE SERVER: Detecting C compiler ABI info +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":65,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compiler ABI info - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compiler ABI info - done +CMAKE SERVER: Detecting C compiler ABI info - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compile features","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compile features +CMAKE SERVER: Detecting C compile features +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":96,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":126,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":155,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compile features - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compile features - done +CMAKE SERVER: Detecting C compile features - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":184,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compiler ABI info","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compiler ABI info +CMAKE SERVER: Detecting CXX compiler ABI info +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":211,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compiler ABI info - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compiler ABI info - done +CMAKE SERVER: Detecting CXX compiler ABI info - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compile features","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compile features +CMAKE SERVER: Detecting CXX compile features +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":237,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":262,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":287,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":311,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compile features - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compile features - done +CMAKE SERVER: Detecting CXX compile features - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":1000,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Configuring done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Configuring done +CMAKE SERVER: Configuring done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"compute"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","progressCurrent":1000,"progressMaximum":1000,"progressMessage":"Generating","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","message":"Generating done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Generating done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"cmakeInputs"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"buildFiles":[{"isCMake":true,"isTemporary":false,"sources":["C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in"]},{"isCMake":false,"isTemporary":false,"sources":["CMakeLists.txt","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake"]},{"isCMake":false,"isTemporary":true,"sources":["../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeSystem.cmake","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCCompiler.cmake","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCCompiler.cmake","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/armeabi-v7a/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake"]}],"cmakeRootDirectory":"C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10","cookie":"","inReplyTo":"cmakeInputs","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"codemodel"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"configurations":[{"name":"Debug","projects":[{"buildDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a","name":"Project","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","targets":[{"artifacts":["D:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so"],"buildDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a","fileGroups":[{"compileFlags":"-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11","defines":["custom_frame_crypto_EXPORTS"],"includePath":[{"path":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include"}],"isGenerated":false,"language":"CXX","sources":["custom_video_frame_decryptor.cpp","custom_audio_frame_decryptor.cpp","custom_video_frame_encryptor.cpp","custom_audio_frame_encryptor.cpp","frame_crypto_jni.cpp"]}],"fullName":"libcustom_frame_crypto.so","linkFlags":"-Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libgcc_real.a -Wl,--exclude-libs,libatomic.a -static-libstdc++ -Wl,--build-id -Wl,--fatal-warnings -Wl,--exclude-libs,libunwind.a -Wl,--no-undefined -Qunused-arguments","linkLibraries":"-llog -latomic -lm","linkerLanguage":"CXX","name":"custom_frame_crypto","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","sysroot":"C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot","type":"SHARED_LIBRARY"}]}]}],"cookie":"","inReplyTo":"codemodel","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/compile_commands.json b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/compile_commands.json new file mode 100644 index 0000000..52081b3 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/compile_commands.json @@ -0,0 +1,31 @@ +[ +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_video_frame_decryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_audio_frame_decryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_video_frame_encryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_audio_frame_encryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/armeabi-v7a", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -D_FORTIFY_SOURCE=2 -march=armv7-a -mthumb -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\frame_crypto_jni.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp" +} +] \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/json_generation_record.json b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/json_generation_record.json new file mode 100644 index 0000000..61fb7d4 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/json_generation_record.json @@ -0,0 +1,14 @@ +[ + { + "level": "INFO", + "message": "Start JSON generation. Platform version: 19 min SDK version: armeabi-v7a" + }, + { + "level": "INFO", + "message": "JSON \u0027D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\armeabi-v7a\\android_gradle_build.json\u0027 was up-to-date" + }, + { + "level": "INFO", + "message": "JSON generation completed without problems" + } +] \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/armeabi-v7a/rules.ninja b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/rules.ninja new file mode 100644 index 0000000..7ffe51b --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/armeabi-v7a/rules.ninja @@ -0,0 +1,64 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: Project +# Configuration: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__custom_frame_crypto + depfile = $DEP_FILE + deps = gcc + command = C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__custom_frame_crypto + command = cmd.exe /C "$PRE_LINK && C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=armv7-none-linux-androideabi19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp -BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\armeabi-v7a + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe -t clean + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe -t targets + description = All primary targets available: + diff --git a/meeting1v1/.cxx/cmake/debug/x86/.ninja_deps b/meeting1v1/.cxx/cmake/debug/x86/.ninja_deps new file mode 100644 index 0000000..870a590 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/.ninja_deps differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/.ninja_log b/meeting1v1/.cxx/cmake/debug/x86/.ninja_log new file mode 100644 index 0000000..56ea67e --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/.ninja_log @@ -0,0 +1,7 @@ +# ninja log v5 +74 1472 711547793 CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o 899d6638b682bc05 +33 1476 711547793 CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o b72751ecae8557a5 +47 1482 711547793 CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o eca7e8b336d6795a +25 1483 711547793 CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o d80ac247c54bbefd +4 1486 711547793 CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o 5a1d573507682037 +1486 1831 711547793 D:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so 52a5d450fee90739 diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeCache.txt b/meeting1v1/.cxx/cmake/debug/x86/CMakeCache.txt new file mode 100644 index 0000000..eb841d1 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeCache.txt @@ -0,0 +1,357 @@ +# This is the CMakeCache file. +# For build in directory: d:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86 +# It was generated by CMake: C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +ANDROID_ABI:UNINITIALIZED=x86 + +//No help, variable specified on the command line. +ANDROID_NDK:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 + +//No help, variable specified on the command line. +ANDROID_PLATFORM:UNINITIALIZED=android-19 + +//No help, variable specified on the command line. +CMAKE_ANDROID_ARCH_ABI:UNINITIALIZED=x86 + +//No help, variable specified on the command line. +CMAKE_ANDROID_NDK:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 + +//Archiver +CMAKE_AR:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ar.exe + +//Flags used by the compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING= + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING=Debug + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=CMAKE_CXX_COMPILER_AR-NOTFOUND + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=CMAKE_CXX_COMPILER_RANLIB-NOTFOUND + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING= + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-latomic -lm + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=CMAKE_C_COMPILER_AR-NOTFOUND + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=CMAKE_C_COMPILER_RANLIB-NOTFOUND + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING= + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING= + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-latomic -lm + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Project + +//No help, variable specified on the command line. +CMAKE_LIBRARY_OUTPUT_DIRECTORY:UNINITIALIZED=D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\x86 + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ld.exe + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:UNINITIALIZED=C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Project + +//Ranlib +CMAKE_RANLIB:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ranlib.exe + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-strip.exe + +//No help, variable specified on the command line. +CMAKE_SYSTEM_NAME:UNINITIALIZED=Android + +//No help, variable specified on the command line. +CMAKE_SYSTEM_VERSION:UNINITIALIZED=19 + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86 + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp + +//Dependencies for the target +custom_frame_crypto_LIB_DEPENDS:STATIC=general;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19/liblog.so; + +//Path to a library. +log-lib:FILEPATH=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19/liblog.so + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=d:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86 +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..152eb70 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "9.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ar.exe") +set(CMAKE_C_COMPILER_AR "CMAKE_C_COMPILER_AR-NOTFOUND") +set(CMAKE_RANLIB "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "CMAKE_C_COMPILER_RANLIB-NOTFOUND") +set(CMAKE_LINKER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ld.exe") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;dl;c;gcc;dl") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/i386;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/i686-linux-android/lib;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..6898575 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "9.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ar.exe") +set(CMAKE_CXX_COMPILER_AR "CMAKE_CXX_COMPILER_AR-NOTFOUND") +set(CMAKE_RANLIB "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "CMAKE_CXX_COMPILER_RANLIB-NOTFOUND") +set(CMAKE_LINKER "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/i686-linux-android-ld.exe") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;m;gcc;dl;c;gcc;dl") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/i386;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/i686-linux-android/lib;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..aaa3930 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..9581585 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeSystem.cmake b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000..50bbf4e --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22621") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22621") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + +include("C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake") + +set(CMAKE_SYSTEM "Android-1") +set(CMAKE_SYSTEM_NAME "Android") +set(CMAKE_SYSTEM_VERSION "1") +set(CMAKE_SYSTEM_PROCESSOR "i686") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeOutput.log b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..262ee3a --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeOutput.log @@ -0,0 +1,508 @@ +The target system is: Android - 1 - i686 +The host system is: Windows - 10.0.22621 - AMD64 +Determining if the C compiler works passed with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_8e186" +[1/2] Building C object CMakeFiles/cmTC_8e186.dir/testCCompiler.c.o +[2/2] Linking C executable cmTC_8e186 + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_01ae4" +[1/2] Building C object CMakeFiles/cmTC_01ae4.dir/CMakeCCompilerABI.c.o +[2/2] Linking C executable cmTC_01ae4 +Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn) +Target: i686-none-linux-android19 +Thread model: posix +InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin +Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android\4.9.x +Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/x86_64-linux-android\4.9.x +Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x +Candidate multilib: .;@m32 +Selected multilib: .;@m32 + "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack --warn-shared-textrel -z now -z relro --hash-style=both --enable-new-dtags --eh-frame-hdr -m elf_i386 -dynamic-linker /system/bin/linker -o cmTC_01ae4 "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --no-undefined --gc-sections CMakeFiles/cmTC_01ae4.dir/CMakeCCompilerABI.c.o -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtend_android.o" + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(i686-linux-android-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_01ae4"] + ignore line: [[1/2] Building C object CMakeFiles/cmTC_01ae4.dir/CMakeCCompilerABI.c.o] + ignore line: [[2/2] Linking C executable cmTC_01ae4] + ignore line: [Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn)] + ignore line: [Target: i686-none-linux-android19] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin] + ignore line: [Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android\4.9.x] + ignore line: [Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/x86_64-linux-android\4.9.x] + ignore line: [Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] + ignore line: [Candidate multilib: .] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m32] + link line: [ "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack --warn-shared-textrel -z now -z relro --hash-style=both --enable-new-dtags --eh-frame-hdr -m elf_i386 -dynamic-linker /system/bin/linker -o cmTC_01ae4 "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --no-undefined --gc-sections CMakeFiles/cmTC_01ae4.dir/CMakeCCompilerABI.c.o -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtend_android.o"] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/bin\\ld] ==> ignore + arg [--sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot] ==> ignore + arg [-pie] ==> ignore + arg [-znoexecstack] ==> ignore + arg [--warn-shared-textrel] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [--hash-style=both] ==> ignore + arg [--enable-new-dtags] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_i386] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/system/bin/linker] ==> ignore + arg [-o] ==> ignore + arg [cmTC_01ae4] ==> ignore + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtbegin_dynamic.o] ==> ignore + arg [-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386] ==> dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + arg [--exclude-libs] ==> ignore + arg [libgcc.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libgcc_real.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libatomic.a] ==> ignore + arg [--build-id] ==> ignore + arg [--fatal-warnings] ==> ignore + arg [--no-undefined] ==> ignore + arg [--gc-sections] ==> ignore + arg [CMakeFiles/cmTC_01ae4.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtend_android.o] ==> ignore + collapse library dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/i386] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/i686-linux-android/lib] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit libs: [gcc;dl;c;gcc;dl] + implicit dirs: [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/i386;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/i686-linux-android/lib;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_0a7af" +[1/2] Building C object CMakeFiles/cmTC_0a7af.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_0a7af + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_22be5" +[1/2] Building C object CMakeFiles/cmTC_22be5.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_22be5 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_b710e" +[1/2] Building C object CMakeFiles/cmTC_b710e.dir/feature_tests.c.o +[2/2] Linking C executable cmTC_b710e + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_f7223" +[1/2] Building CXX object CMakeFiles/cmTC_f7223.dir/testCXXCompiler.cxx.o +[2/2] Linking CXX executable cmTC_f7223 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_159d6" +[1/2] Building CXX object CMakeFiles/cmTC_159d6.dir/CMakeCXXCompilerABI.cpp.o +[2/2] Linking CXX executable cmTC_159d6 +Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn) +Target: i686-none-linux-android19 +Thread model: posix +InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin +Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android\4.9.x +Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/x86_64-linux-android\4.9.x +Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x +Candidate multilib: .;@m32 +Selected multilib: .;@m32 + "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack --warn-shared-textrel -z now -z relro --hash-style=both --enable-new-dtags --eh-frame-hdr -m elf_i386 -dynamic-linker /system/bin/linker -o cmTC_159d6 "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --no-undefined --gc-sections CMakeFiles/cmTC_159d6.dir/CMakeCXXCompilerABI.cpp.o -Bstatic -lc++ -Bdynamic -lm -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtend_android.o" + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(i686-linux-android-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_159d6"] + ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_159d6.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [[2/2] Linking CXX executable cmTC_159d6] + ignore line: [Android (7019983 based on r365631c3) clang version 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) (based on LLVM 9.0.9svn)] + ignore line: [Target: i686-none-linux-android19] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin] + ignore line: [Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android\4.9.x] + ignore line: [Found candidate GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/x86_64-linux-android\4.9.x] + ignore line: [Selected GCC installation: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] + ignore line: [Candidate multilib: .] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m32] + link line: [ "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/bin\\ld" --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -pie -z noexecstack --warn-shared-textrel -z now -z relro --hash-style=both --enable-new-dtags --eh-frame-hdr -m elf_i386 -dynamic-linker /system/bin/linker -o cmTC_159d6 "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtbegin_dynamic.o" "-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386" -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19 -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib -LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib --exclude-libs libgcc.a --exclude-libs libgcc_real.a --exclude-libs libatomic.a --build-id --fatal-warnings --no-undefined --gc-sections CMakeFiles/cmTC_159d6.dir/CMakeCXXCompilerABI.cpp.o -Bstatic -lc++ -Bdynamic -lm -lgcc -ldl -lc -lgcc -ldl "C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtend_android.o"] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/bin\\ld] ==> ignore + arg [--sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot] ==> ignore + arg [-pie] ==> ignore + arg [-znoexecstack] ==> ignore + arg [--warn-shared-textrel] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [--hash-style=both] ==> ignore + arg [--enable-new-dtags] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_i386] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/system/bin/linker] ==> ignore + arg [-o] ==> ignore + arg [cmTC_159d6] ==> ignore + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtbegin_dynamic.o] ==> ignore + arg [-LC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386] ==> dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib] + arg [-LC:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + arg [--exclude-libs] ==> ignore + arg [libgcc.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libgcc_real.a] ==> ignore + arg [--exclude-libs] ==> ignore + arg [libatomic.a] ==> ignore + arg [--build-id] ==> ignore + arg [--fatal-warnings] ==> ignore + arg [--no-undefined] ==> ignore + arg [--gc-sections] ==> ignore + arg [CMakeFiles/cmTC_159d6.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-Bstatic] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-Bdynamic] ==> ignore + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [-ldl] ==> lib [dl] + arg [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19\\crtend_android.o] ==> ignore + collapse library dir [C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\lib64\\clang\\9.0.9\\lib\\linux\\i386] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/i386] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x/../../../../i686-linux-android/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/i686-linux-android/lib] + collapse library dir [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] ==> [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit libs: [c++;m;gcc;dl;c;gcc;dl] + implicit dirs: [C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib64/clang/9.0.9/lib/linux/i386;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/lib/gcc/i686-linux-android/4.9.x;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/i686-linux-android/lib;C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_fe55e" +[1/2] Building CXX object CMakeFiles/cmTC_fe55e.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_fe55e + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_2201a" +[1/2] Building CXX object CMakeFiles/cmTC_2201a.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_2201a + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_17f23" +[1/2] Building CXX object CMakeFiles/cmTC_17f23.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_17f23 + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/CMakeTmp + +Run Build Command:"C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe" "cmTC_677dc" +[1/2] Building CXX object CMakeFiles/cmTC_677dc.dir/feature_tests.cxx.o +[2/2] Linking CXX executable cmTC_677dc + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/TargetDirectories.txt b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..68058dc --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/edit_cache.dir +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir +D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/rebuild_cache.dir diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/cmake.check_cache b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o new file mode 100644 index 0000000..8b2a184 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o new file mode 100644 index 0000000..7aa431e Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o new file mode 100644 index 0000000..c0cdf51 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o new file mode 100644 index 0000000..692d447 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o new file mode 100644 index 0000000..3570e22 Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.bin b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..1cfb75b Binary files /dev/null and b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.bin differ diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.c b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..90a87b1 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.cxx b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..703b335 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_aggregate_nsdmi) +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alias_templates) +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alignas) +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_alignas) +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_attributes) +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_auto_type) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_binary_literals) +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_constexpr) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_contextual_conversions) +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_decltype) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_decltype_incomplete_return_types) +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_default_function_template_args) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_defaulted_functions) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_defaulted_functions) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_delegating_constructors) +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_deleted_functions) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_explicit_conversions) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_override_control) +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_generalized_initializers) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 304 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_inheriting_constructors) +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_lambdas) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_init_captures) +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_local_type_template_args) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_noexcept) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_nonstatic_member_init) +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_nullptr) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_override_control) +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_range_for) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_raw_string_literals) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_reference_qualified_functions) +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_relaxed_constexpr) +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_return_type_deduction) +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_rvalue_references) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_static_assert) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_strong_enums) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 199711L +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_thread_local) +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_trailing_return) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_unicode_literals) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_generalized_initializers) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_unrestricted_unions) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_user_literals) +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_variable_templates) +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if ((__clang_major__ * 100) + __clang_minor__) >= 301 && __has_feature(cxx_variadic_templates) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build.json b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build.json new file mode 100644 index 0000000..07d59cf --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build.json @@ -0,0 +1,62 @@ +{ + "stringTable": { + "0": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86", + "1": "--target=i686-none-linux-android19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11" + }, + "buildFiles": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\platforms.cmake", + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt" + ], + "cleanCommands": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\" clean" + ], + "buildTargetsCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\" {LIST_OF_TARGETS_TO_BUILD}", + "libraries": { + "custom_frame_crypto-Debug-x86": { + "buildCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\" custom_frame_crypto", + "buildType": "debug", + "toolchain": "3866595253", + "abi": "x86", + "artifactName": "custom_frame_crypto", + "files": [ + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + }, + { + "src": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp", + "flagsOrdinal": 1, + "workingDirectoryOrdinal": 0 + } + ], + "headers": [], + "output": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\x86\\libcustom_frame_crypto.so" + } + }, + "toolchains": { + "3866595253": { + "cppCompilerExecutable": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe" + } + }, + "cFileExtensions": [], + "cppFileExtensions": [ + "cpp" + ] +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_custom_frame_crypto_x86.command.txt b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_custom_frame_crypto_x86.command.txt new file mode 100644 index 0000000..56fa822 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_custom_frame_crypto_x86.command.txt @@ -0,0 +1,7 @@ +Executable : C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe +arguments : +-C +D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\x86 +custom_frame_crypto +jvmArgs : + diff --git a/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_custom_frame_crypto_x86.stderr.txt b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_custom_frame_crypto_x86.stderr.txt new file mode 100644 index 0000000..e69de29 diff --git a/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_custom_frame_crypto_x86.stdout.txt b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_custom_frame_crypto_x86.stdout.txt new file mode 100644 index 0000000..20e8b86 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_custom_frame_crypto_x86.stdout.txt @@ -0,0 +1,2 @@ +ninja: Entering directory `D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\x86' +ninja: no work to do. diff --git a/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_mini.json b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_mini.json new file mode 100644 index 0000000..563d54e --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/android_gradle_build_mini.json @@ -0,0 +1,19 @@ +{ + "buildFiles": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\platforms.cmake", + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt" + ], + "cleanCommands": [ + "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\" clean" + ], + "buildTargetsCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\" {LIST_OF_TARGETS_TO_BUILD}", + "libraries": { + "custom_frame_crypto-Debug-x86": { + "artifactName": "custom_frame_crypto", + "buildCommand": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe -C \"D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\" custom_frame_crypto", + "abi": "x86", + "output": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\x86\\libcustom_frame_crypto.so" + } + } +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/x86/build.ninja b/meeting1v1/.cxx/cmake/debug/x86/build.ninja new file mode 100644 index 0000000..2527b22 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/build.ninja @@ -0,0 +1,155 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: Project +# Configuration: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include rules.ninja + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\x86 && C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 +build edit_cache: phony CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for SHARED_LIBRARY target custom_frame_crypto + + +############################################# +# Order-only phony target for custom_frame_crypto + +build cmake_object_order_depends_target_custom_frame_crypto: phony +build CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_video_frame_decryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_video_frame_decryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_audio_frame_decryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_audio_frame_decryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_video_frame_encryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_video_frame_encryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/custom_audio_frame_encryptor.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\custom_audio_frame_encryptor.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir +build CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o: CXX_COMPILER__custom_frame_crypto D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/frame_crypto_jni.cpp || cmake_object_order_depends_target_custom_frame_crypto + DEFINES = -Dcustom_frame_crypto_EXPORTS + DEP_FILE = CMakeFiles\custom_frame_crypto.dir\frame_crypto_jni.cpp.o.d + FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 + INCLUDES = -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + OBJECT_FILE_DIR = CMakeFiles\custom_frame_crypto.dir + +# ============================================================================= +# Link build statements for SHARED_LIBRARY target custom_frame_crypto + + +############################################# +# Link the shared library D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\x86\libcustom_frame_crypto.so + +build D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so: CXX_SHARED_LIBRARY_LINKER__custom_frame_crypto CMakeFiles/custom_frame_crypto.dir/custom_video_frame_decryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_decryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_video_frame_encryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/custom_audio_frame_encryptor.cpp.o CMakeFiles/custom_frame_crypto.dir/frame_crypto_jni.cpp.o | C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/lib/i686-linux-android/19/liblog.so + LANGUAGE_COMPILE_FLAGS = -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info + LINK_FLAGS = -Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libgcc_real.a -Wl,--exclude-libs,libatomic.a -static-libstdc++ -Wl,--build-id -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments + LINK_LIBRARIES = -llog -latomic -lm + OBJECT_DIR = CMakeFiles\custom_frame_crypto.dir + POST_BUILD = cd . + PRE_LINK = cd . + SONAME = libcustom_frame_crypto.so + SONAME_FLAG = -Wl,-soname, + TARGET_FILE = D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\x86\libcustom_frame_crypto.so + TARGET_PDB = custom_frame_crypto.so.dbg + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D D:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\x86 && C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp -BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\x86" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build rebuild_cache: phony CMakeFiles/rebuild_cache.util +# ============================================================================= +# Target aliases. + +build custom_frame_crypto: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so +build libcustom_frame_crypto.so: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so +# ============================================================================= +# Folder targets. + +# ============================================================================= +# ============================================================================= +# Built-in targets + + +############################################# +# The main all target. + +build all: phony D$:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so + +############################################# +# Make the all target the default. + +default all + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/CMakeLists.txt + pool = console + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake C$:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx D$:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/CMakeLists.txt: phony + +############################################# +# Clean all the built files. + +build clean: CLEAN + +############################################# +# Print all primary targets available. + +build help: HELP diff --git a/meeting1v1/.cxx/cmake/debug/x86/build_command.txt b/meeting1v1/.cxx/cmake/debug/x86/build_command.txt new file mode 100644 index 0000000..8f81185 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/build_command.txt @@ -0,0 +1,19 @@ +Executable : C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe +arguments : +-HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp +-BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\x86 +-DANDROID_ABI=x86 +-DANDROID_PLATFORM=android-19 +-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=D:\StudioProjects\UnionMedTV\meeting1v1\build\intermediates\cmake\debug\obj\x86 +-DCMAKE_BUILD_TYPE=Debug +-DANDROID_NDK=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 +-DCMAKE_SYSTEM_NAME=Android +-DCMAKE_ANDROID_ARCH_ABI=x86 +-DCMAKE_SYSTEM_VERSION=19 +-DCMAKE_EXPORT_COMPILE_COMMANDS=ON +-DCMAKE_ANDROID_NDK=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529 +-DCMAKE_TOOLCHAIN_FILE=C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\build\cmake\android.toolchain.cmake +-G Ninja +-DCMAKE_MAKE_PROGRAM=C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe +jvmArgs : + diff --git a/meeting1v1/.cxx/cmake/debug/x86/build_model.json b/meeting1v1/.cxx/cmake/debug/x86/build_model.json new file mode 100644 index 0000000..88c9516 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/build_model.json @@ -0,0 +1,68 @@ +{ + "variant": { + "module": { + "rootBuildGradleFolder": "D:\\StudioProjects\\UnionMedTV", + "sdkFolder": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk", + "isNativeCompilerSettingsCacheEnabled": false, + "isBuildOnlyTargetAbiEnabled": true, + "ideBuildTargetAbi": "x86", + "splitsAbiFilterSet": [], + "intermediatesFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates", + "gradleModulePathName": ":meeting1v1", + "moduleRootFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1", + "makeFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\CMakeLists.txt", + "buildSystem": "CMAKE", + "compilerSettingsCacheFolder": "D:\\StudioProjects\\UnionMedTV\\.cxx", + "cxxFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx", + "ndkFolder": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "ndkVersion": "21.4.7075529", + "ndkSupportedAbiList": [ + "ARMEABI_V7A", + "ARM64_V8A", + "X86", + "X86_64" + ], + "ndkDefaultAbiList": [ + "ARMEABI_V7A", + "ARM64_V8A", + "X86", + "X86_64" + ], + "cmakeToolchainFile": "." + }, + "buildSystemArgumentList": [], + "cFlagList": [], + "cppFlagsList": [], + "variantName": "debug", + "soFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\lib", + "objFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj", + "jsonFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug", + "gradleBuildOutputFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug", + "isDebuggableEnabled": true, + "validAbiList": [ + "X86" + ], + "buildTargetSet": [] + }, + "abi": "X86", + "abiPlatformVersion": 19, + "cxxBuildFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86", + "jsonFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\\android_gradle_build.json", + "gradleBuildOutputFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\x86", + "objFolder": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\x86", + "buildCommandFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\\build_command.txt", + "buildOutputFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\\build_output.txt", + "modelOutputFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\\build_model.json", + "cmake": { + "cmakeListsWrapperFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\x86\\CMakeLists.txt", + "toolchainWrapperFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\x86\\android_gradle_build.toolchain.cmake", + "buildGenerationStateFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\x86\\build_generation_state.json", + "cacheKeyFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\x86\\compiler_cache_key.json", + "compilerCacheUseFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\x86\\compiler_cache_use.json", + "compilerCacheWriteFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\x86\\compiler_cache_write.json", + "toolchainSettingsFromCacheFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cxx\\debug\\x86\\compiler_settings_cache.cmake", + "cmakeWrappingBaseFolder": "." + }, + "jsonGenerationLoggingRecordFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\\json_generation_record.json", + "compileCommandsJsonFile": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\\compile_commands.json" +} \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/x86/build_output.txt b/meeting1v1/.cxx/cmake/debug/x86/build_output.txt new file mode 100644 index 0000000..4f185e2 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/build_output.txt @@ -0,0 +1,13 @@ +Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +Detecting C compiler ABI info +Detecting C compiler ABI info - done +Detecting C compile features +Detecting C compile features - done +Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +Detecting CXX compiler ABI info +Detecting CXX compiler ABI info - done +Detecting CXX compile features +Detecting CXX compile features - done +Configuring done \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/x86/cmake_install.cmake b/meeting1v1/.cxx/cmake/debug/x86/cmake_install.cmake new file mode 100644 index 0000000..6d44a13 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Project") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/meeting1v1/.cxx/cmake/debug/x86/cmake_server_log.txt b/meeting1v1/.cxx/cmake/debug/x86/cmake_server_log.txt new file mode 100644 index 0000000..7d1bed2 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/cmake_server_log.txt @@ -0,0 +1,350 @@ +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"supportedProtocolVersions":[{"isExperimental":true,"major":1,"minor":1}],"type":"hello"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: { + "type": "handshake", + "cookie": "gradle-cmake-cookie", + "protocolVersion": { + "isExperimental": true, + "major": 1, + "minor": 1 + }, + "sourceDirectory": "D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp", + "buildDirectory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86", + "generator": "Ninja" +} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"gradle-cmake-cookie","inReplyTo":"handshake","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: { + "type": "configure", + "cacheArguments": [ + "", + "-DANDROID_ABI\u003dx86", + "-DANDROID_PLATFORM\u003dandroid-19", + "-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dD:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\cmake\\debug\\obj\\x86", + "-DCMAKE_BUILD_TYPE\u003dDebug", + "-DANDROID_NDK\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "-DCMAKE_SYSTEM_NAME\u003dAndroid", + "-DCMAKE_ANDROID_ARCH_ABI\u003dx86", + "-DCMAKE_SYSTEM_VERSION\u003d19", + "-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON", + "-DCMAKE_ANDROID_NDK\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "-DCMAKE_TOOLCHAIN_FILE\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\build\\cmake\\android.toolchain.cmake", + "-G Ninja", + "-DCMAKE_MAKE_PROGRAM\u003dC:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\\bin\\ninja.exe" + ] +} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":33,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +CMAKE SERVER: Check for working C compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe -- works +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compiler ABI info","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compiler ABI info +CMAKE SERVER: Detecting C compiler ABI info +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":65,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compiler ABI info - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compiler ABI info - done +CMAKE SERVER: Detecting C compiler ABI info - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compile features","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compile features +CMAKE SERVER: Detecting C compile features +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":96,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":126,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":155,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting C compile features - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting C compile features - done +CMAKE SERVER: Detecting C compile features - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":184,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +CMAKE SERVER: Check for working CXX compiler: C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe -- works +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compiler ABI info","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compiler ABI info +CMAKE SERVER: Detecting CXX compiler ABI info +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":211,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compiler ABI info - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compiler ABI info - done +CMAKE SERVER: Detecting CXX compiler ABI info - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compile features","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compile features +CMAKE SERVER: Detecting CXX compile features +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":237,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":262,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":287,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":311,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Detecting CXX compile features - done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Detecting CXX compile features - done +CMAKE SERVER: Detecting CXX compile features - done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","progressCurrent":1000,"progressMaximum":1000,"progressMessage":"Configuring","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","message":"Configuring done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Configuring done +CMAKE SERVER: Configuring done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"configure","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"compute"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","progressCurrent":1000,"progressMaximum":1000,"progressMessage":"Generating","progressMinimum":0,"type":"progress"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","message":"Generating done","type":"message"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: Generating done +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"cookie":"","inReplyTo":"compute","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"cmakeInputs"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"buildFiles":[{"isCMake":true,"isTemporary":false,"sources":["C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystem.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Initialize.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Determine-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android/Determine-Compiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-FindBinUtils.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeGenericSystem.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Linux.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/UnixPaths.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/GNU.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-C.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompilerABI.c","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-C-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang-CXX.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Platform/Android-Clang.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-FeatureTests.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/Compiler/Clang-CXX-TestableFeatures.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in"]},{"isCMake":false,"isTemporary":false,"sources":["CMakeLists.txt","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/platforms.cmake","C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/build/cmake/android.toolchain.cmake"]},{"isCMake":false,"isTemporary":true,"sources":["../../../.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeSystem.cmake","../../../.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCCompiler.cmake","../../../.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake","../../../.cxx/cmake/debug/x86/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/x86/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/x86/CMakeFiles/feature_tests.c","../../../.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCCompiler.cmake","../../../.cxx/cmake/debug/x86/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/x86/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/x86/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/x86/CMakeFiles/feature_tests.cxx","../../../.cxx/cmake/debug/x86/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake"]}],"cmakeRootDirectory":"C:/Users/wuti/AppData/Local/Android/Sdk/cmake/3.10.2.4988404/share/cmake-3.10","cookie":"","inReplyTo":"cmakeInputs","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"type":"codemodel"} + +CMAKE SERVER: ]== "CMake Server" ==] + +CMAKE SERVER: + +CMAKE SERVER: [== "CMake Server" ==[ + +CMAKE SERVER: {"configurations":[{"name":"Debug","projects":[{"buildDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86","name":"Project","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","targets":[{"artifacts":["D:/StudioProjects/UnionMedTV/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so"],"buildDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86","fileGroups":[{"compileFlags":"-g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11","defines":["custom_frame_crypto_EXPORTS"],"includePath":[{"path":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include"}],"isGenerated":false,"language":"CXX","sources":["custom_video_frame_decryptor.cpp","custom_audio_frame_decryptor.cpp","custom_video_frame_encryptor.cpp","custom_audio_frame_encryptor.cpp","frame_crypto_jni.cpp"]}],"fullName":"libcustom_frame_crypto.so","linkFlags":"-Wl,--exclude-libs,libgcc.a -Wl,--exclude-libs,libgcc_real.a -Wl,--exclude-libs,libatomic.a -static-libstdc++ -Wl,--build-id -Wl,--fatal-warnings -Wl,--no-undefined -Qunused-arguments","linkLibraries":"-llog -latomic -lm","linkerLanguage":"CXX","name":"custom_frame_crypto","sourceDirectory":"D:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp","sysroot":"C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot","type":"SHARED_LIBRARY"}]}]}],"cookie":"","inReplyTo":"codemodel","type":"reply"} + +CMAKE SERVER: ]== "CMake Server" ==] + diff --git a/meeting1v1/.cxx/cmake/debug/x86/compile_commands.json b/meeting1v1/.cxx/cmake/debug/x86/compile_commands.json new file mode 100644 index 0000000..0985fe4 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/compile_commands.json @@ -0,0 +1,31 @@ +[ +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=i686-none-linux-android19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_video_frame_decryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_decryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=i686-none-linux-android19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_audio_frame_decryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_decryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=i686-none-linux-android19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_video_frame_encryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_video_frame_encryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=i686-none-linux-android19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\custom_audio_frame_encryptor.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\custom_audio_frame_encryptor.cpp" +}, + +{ + "directory": "D:/StudioProjects/UnionMedTV/meeting1v1/.cxx/cmake/debug/x86", + "command": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529\\toolchains\\llvm\\prebuilt\\windows-x86_64\\bin\\clang++.exe --target=i686-none-linux-android19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -Dcustom_frame_crypto_EXPORTS -ID:/StudioProjects/UnionMedTV/meeting1v1/src/main/cpp/include -g -DANDROID -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -mstackrealign -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -O0 -fno-limit-debug-info -fPIC -Wall -g -std=c++11 -o CMakeFiles\\custom_frame_crypto.dir\\frame_crypto_jni.cpp.o -c D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp", + "file": "D:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\cpp\\frame_crypto_jni.cpp" +} +] \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/x86/json_generation_record.json b/meeting1v1/.cxx/cmake/debug/x86/json_generation_record.json new file mode 100644 index 0000000..08b314b --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/json_generation_record.json @@ -0,0 +1,22 @@ +[ + { + "level": "INFO", + "message": "Start JSON generation. Platform version: 19 min SDK version: x86" + }, + { + "level": "INFO", + "message": "Trying to locate CMake in local SDK repository." + }, + { + "level": "INFO", + "message": "- CMake found in SDK at \u0027C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\cmake\\3.10.2.4988404\u0027 had version \u00273.10.2\u0027" + }, + { + "level": "INFO", + "message": "JSON \u0027D:\\StudioProjects\\UnionMedTV\\meeting1v1\\.cxx\\cmake\\debug\\x86\\android_gradle_build.json\u0027 was up-to-date" + }, + { + "level": "INFO", + "message": "JSON generation completed without problems" + } +] \ No newline at end of file diff --git a/meeting1v1/.cxx/cmake/debug/x86/rules.ninja b/meeting1v1/.cxx/cmake/debug/x86/rules.ninja new file mode 100644 index 0000000..63c9bb5 --- /dev/null +++ b/meeting1v1/.cxx/cmake/debug/x86/rules.ninja @@ -0,0 +1,64 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: Project +# Configuration: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__custom_frame_crypto + depfile = $DEP_FILE + deps = gcc + command = C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=i686-none-linux-android19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__custom_frame_crypto + command = cmd.exe /C "$PRE_LINK && C:\Users\wuti\AppData\Local\Android\Sdk\ndk\21.4.7075529\toolchains\llvm\prebuilt\windows-x86_64\bin\clang++.exe --target=i686-none-linux-android19 --gcc-toolchain=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64 --sysroot=C:/Users/wuti/AppData/Local/Android/Sdk/ndk/21.4.7075529/toolchains/llvm/prebuilt/windows-x86_64/sysroot -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\cmake.exe -HD:\StudioProjects\UnionMedTV\meeting1v1\src\main\cpp -BD:\StudioProjects\UnionMedTV\meeting1v1\.cxx\cmake\debug\x86 + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe -t clean + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\Users\wuti\AppData\Local\Android\Sdk\cmake\3.10.2.4988404\bin\ninja.exe -t targets + description = All primary targets available: + diff --git a/meeting1v1/.cxx/ndk_locator_record.json b/meeting1v1/.cxx/ndk_locator_record.json new file mode 100644 index 0000000..1081e8b --- /dev/null +++ b/meeting1v1/.cxx/ndk_locator_record.json @@ -0,0 +1,33 @@ +{ + "ndkFolder": "C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529", + "messages": [ + { + "level": "INFO", + "message": "android.ndkVersion from module build.gradle is not set" + }, + { + "level": "INFO", + "message": "ndk.dir in local.properties is not set" + }, + { + "level": "INFO", + "message": "ANDROID_NDK_HOME environment variable is not set" + }, + { + "level": "INFO", + "message": "sdkFolder is C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk" + }, + { + "level": "INFO", + "message": "Considering C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk-bundle in SDK ndk-bundle folder" + }, + { + "level": "INFO", + "message": "Considering C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529 in SDK ndk folder" + }, + { + "level": "INFO", + "message": "No user requested version, choosing C:\\Users\\wuti\\AppData\\Local\\Android\\Sdk\\ndk\\21.4.7075529 which is version 21.4.7075529" + } + ] +} \ No newline at end of file diff --git a/meeting1v1/build.gradle b/meeting1v1/build.gradle new file mode 100644 index 0000000..131c28e --- /dev/null +++ b/meeting1v1/build.gradle @@ -0,0 +1,29 @@ +apply plugin: 'com.android.library' + +android { + compileSdkVersion 30 + + defaultConfig { + minSdkVersion 19 + targetSdkVersion 27 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + externalNativeBuild { + cmake { + path "src/main/cpp/CMakeLists.txt" + version "3.10.2" + } + } +} + +dependencies { + api project(path: ':imlib') + api project(path: ':common') + api project(path: ':calllib') + implementation 'androidx.appcompat:appcompat:1.1.0' + implementation 'androidx.constraintlayout:constraintlayout:1.1.3' +} \ No newline at end of file diff --git a/meeting1v1/build/.transforms/b492dd76bdc7a24c7f980cab5f83ce96.bin b/meeting1v1/build/.transforms/b492dd76bdc7a24c7f980cab5f83ce96.bin new file mode 100644 index 0000000..0d259dd --- /dev/null +++ b/meeting1v1/build/.transforms/b492dd76bdc7a24c7f980cab5f83ce96.bin @@ -0,0 +1 @@ +o/classes diff --git a/meeting1v1/build/.transforms/b492dd76bdc7a24c7f980cab5f83ce96/classes/classes.dex b/meeting1v1/build/.transforms/b492dd76bdc7a24c7f980cab5f83ce96/classes/classes.dex new file mode 100644 index 0000000..1ca2799 Binary files /dev/null and b/meeting1v1/build/.transforms/b492dd76bdc7a24c7f980cab5f83ce96/classes/classes.dex differ diff --git a/meeting1v1/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml b/meeting1v1/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/meeting1v1/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/meeting1v1/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png b/meeting1v1/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png new file mode 100644 index 0000000..0c8b2a0 Binary files /dev/null and b/meeting1v1/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png differ diff --git a/meeting1v1/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png b/meeting1v1/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png new file mode 100644 index 0000000..59f69a6 Binary files /dev/null and b/meeting1v1/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png differ diff --git a/meeting1v1/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png b/meeting1v1/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png new file mode 100644 index 0000000..6453df4 Binary files /dev/null and b/meeting1v1/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png differ diff --git a/meeting1v1/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png b/meeting1v1/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png new file mode 100644 index 0000000..fdfdfe4 Binary files /dev/null and b/meeting1v1/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png differ diff --git a/meeting1v1/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png b/meeting1v1/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png new file mode 100644 index 0000000..c96f682 Binary files /dev/null and b/meeting1v1/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png differ diff --git a/meeting1v1/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png b/meeting1v1/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png new file mode 100644 index 0000000..d09494e Binary files /dev/null and b/meeting1v1/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png differ diff --git a/meeting1v1/build/generated/source/buildConfig/debug/cn/rongcloud/demo/meeting/BuildConfig.java b/meeting1v1/build/generated/source/buildConfig/debug/cn/rongcloud/demo/meeting/BuildConfig.java new file mode 100644 index 0000000..82c2481 --- /dev/null +++ b/meeting1v1/build/generated/source/buildConfig/debug/cn/rongcloud/demo/meeting/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package cn.rongcloud.demo.meeting; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "cn.rongcloud.demo.meeting"; + /** + * @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.demo.meeting"; + 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 = "1.0"; +} diff --git a/meeting1v1/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/meeting1v1/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000..b1af459 --- /dev/null +++ b/meeting1v1/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/meeting1v1/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/meeting1v1/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000..29f7977 --- /dev/null +++ b/meeting1v1/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"meeting1v1-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"cn.rongcloud.demo.meeting","split":""}}] \ No newline at end of file diff --git a/meeting1v1/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/meeting1v1/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/meeting1v1/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/meeting1v1/build/intermediates/cmake/debug/obj/arm64-v8a/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/cmake/debug/obj/arm64-v8a/libcustom_frame_crypto.so new file mode 100644 index 0000000..9b3abb7 Binary files /dev/null and b/meeting1v1/build/intermediates/cmake/debug/obj/arm64-v8a/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so new file mode 100644 index 0000000..d84e14d Binary files /dev/null and b/meeting1v1/build/intermediates/cmake/debug/obj/armeabi-v7a/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so new file mode 100644 index 0000000..e737de0 Binary files /dev/null and b/meeting1v1/build/intermediates/cmake/debug/obj/x86/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/compile_library_classes/debug/classes.jar b/meeting1v1/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000..78eadc0 Binary files /dev/null and b/meeting1v1/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/meeting1v1/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/meeting1v1/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000..874142f Binary files /dev/null and b/meeting1v1/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/meeting1v1/build/intermediates/incremental/debug-mergeNativeLibs/merge-state b/meeting1v1/build/intermediates/incremental/debug-mergeNativeLibs/merge-state new file mode 100644 index 0000000..666fa44 Binary files /dev/null and b/meeting1v1/build/intermediates/incremental/debug-mergeNativeLibs/merge-state differ diff --git a/meeting1v1/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/meeting1v1/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000..2325fc2 --- /dev/null +++ b/meeting1v1/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,11 @@ +#Thu Jul 20 17:08:25 CST 2023 +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\res\\layout\\activity_create_room.xml=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\layout\\activity_create_room.xml +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\generated\\res\\pngs\\debug\\drawable-hdpi\\ic_launcher_background.png=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\ic_launcher_background.png +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\generated\\res\\pngs\\debug\\drawable-anydpi-v21\\ic_launcher_background.xml=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\drawable-anydpi-v21\\ic_launcher_background.xml +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\generated\\res\\pngs\\debug\\drawable-xxxhdpi\\ic_launcher_background.png=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\drawable-xxxhdpi-v4\\ic_launcher_background.png +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\generated\\res\\pngs\\debug\\drawable-mdpi\\ic_launcher_background.png=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\drawable-mdpi-v4\\ic_launcher_background.png +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\generated\\res\\pngs\\debug\\drawable-ldpi\\ic_launcher_background.png=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\drawable-ldpi-v4\\ic_launcher_background.png +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\generated\\res\\pngs\\debug\\drawable-xhdpi\\ic_launcher_background.png=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\drawable-xhdpi-v4\\ic_launcher_background.png +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\generated\\res\\pngs\\debug\\drawable-xxhdpi\\ic_launcher_background.png=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\drawable-xxhdpi-v4\\ic_launcher_background.png +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\res\\layout\\activity_meeting1_v1_main.xml=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\layout\\activity_meeting1_v1_main.xml +D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\src\\main\\res\\drawable\\hang_up.png=D\:\\StudioProjects\\UnionMedTV\\meeting1v1\\build\\intermediates\\packaged_res\\debug\\drawable\\hang_up.png diff --git a/meeting1v1/build/intermediates/incremental/packageDebugResources/merger.xml b/meeting1v1/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000..d185aed --- /dev/null +++ b/meeting1v1/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/meeting1v1/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libcustom_frame_crypto.so new file mode 100644 index 0000000..1335bed Binary files /dev/null and b/meeting1v1/build/intermediates/intermediate-jars/debug/jni/arm64-v8a/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libcustom_frame_crypto.so new file mode 100644 index 0000000..5bd5a92 Binary files /dev/null and b/meeting1v1/build/intermediates/intermediate-jars/debug/jni/armeabi-v7a/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/intermediate-jars/debug/jni/x86/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/intermediate-jars/debug/jni/x86/libcustom_frame_crypto.so new file mode 100644 index 0000000..eab383e Binary files /dev/null and b/meeting1v1/build/intermediates/intermediate-jars/debug/jni/x86/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/library_manifest/debug/AndroidManifest.xml b/meeting1v1/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000..b1af459 --- /dev/null +++ b/meeting1v1/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/meeting1v1/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/meeting1v1/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000..16f8008 --- /dev/null +++ b/meeting1v1/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,14 @@ +R_DEF: Internal format may change without notice +local +drawable hang_up +drawable ic_launcher_background +id btn_joinroom +id btn_leave +id et_room_id +id fl_fullscreen +id local_user +id remote_user +id tv_input_room_id +id tv_meeting +layout activity_create_room +layout activity_meeting1_v1_main diff --git a/meeting1v1/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/meeting1v1/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000..405c2aa --- /dev/null +++ b/meeting1v1/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,41 @@ +1 +2 +6 +7 D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml +9 android:targetSdkVersion="27" /> +9-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml +10 +11 +11-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:5:5-78 +11-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:5:22-75 +12 +13 +13-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:6:5-17:19 +14 D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:7:9-11:72 +15 android:name="cn.rongcloud.demo.meeting.MeetingPrepareActivity" +15-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:8:13-76 +16 android:launchMode="singleTask" +16-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:9:13-44 +17 android:screenOrientation="portrait" +17-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:10:13-49 +18 android:theme="@style/Theme.AppCompat.Light.NoActionBar" /> +18-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:11:13-69 +19 D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:12:9-16:60 +20 android:name="cn.rongcloud.demo.meeting.MeetingActivity" +20-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:13:13-69 +21 android:launchMode="singleTop" +21-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:14:13-43 +22 android:screenOrientation="portrait" +22-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:15:13-49 +23 android:theme="@style/Theme.AppCompat.Light" /> +23-->D:\StudioProjects\UnionMedTV\meeting1v1\src\main\AndroidManifest.xml:16:13-57 +24 +25 +26 diff --git a/meeting1v1/build/intermediates/merged_manifests/debug/output.json b/meeting1v1/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000..da3759b --- /dev/null +++ b/meeting1v1/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"meeting1v1-debug.aar","fullName":"debug","baseName":"debug"},"path":"..\\..\\library_manifest\\debug\\AndroidManifest.xml","properties":{"packageId":"cn.rongcloud.demo.meeting","split":""}}] \ No newline at end of file diff --git a/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libcustom_frame_crypto.so new file mode 100644 index 0000000..9b3abb7 Binary files /dev/null and b/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/arm64-v8a/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libcustom_frame_crypto.so new file mode 100644 index 0000000..d84e14d Binary files /dev/null and b/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/armeabi-v7a/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/x86/libcustom_frame_crypto.so b/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/x86/libcustom_frame_crypto.so new file mode 100644 index 0000000..e737de0 Binary files /dev/null and b/meeting1v1/build/intermediates/merged_native_libs/debug/out/lib/x86/libcustom_frame_crypto.so differ diff --git a/meeting1v1/build/intermediates/packaged_res/debug/drawable-anydpi-v21/ic_launcher_background.xml b/meeting1v1/build/intermediates/packaged_res/debug/drawable-anydpi-v21/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/meeting1v1/build/intermediates/packaged_res/debug/drawable-anydpi-v21/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/meeting1v1/build/intermediates/packaged_res/debug/drawable-hdpi-v4/ic_launcher_background.png b/meeting1v1/build/intermediates/packaged_res/debug/drawable-hdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000..0c8b2a0 Binary files /dev/null and b/meeting1v1/build/intermediates/packaged_res/debug/drawable-hdpi-v4/ic_launcher_background.png differ diff --git a/meeting1v1/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_launcher_background.png b/meeting1v1/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_launcher_background.png new file mode 100644 index 0000000..59f69a6 Binary files /dev/null and b/meeting1v1/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_launcher_background.png differ diff --git a/meeting1v1/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_launcher_background.png b/meeting1v1/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000..6453df4 Binary files /dev/null and b/meeting1v1/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_launcher_background.png differ diff --git a/meeting1v1/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_launcher_background.png b/meeting1v1/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000..fdfdfe4 Binary files /dev/null and b/meeting1v1/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_launcher_background.png differ diff --git a/meeting1v1/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/ic_launcher_background.png b/meeting1v1/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000..c96f682 Binary files /dev/null and b/meeting1v1/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/ic_launcher_background.png differ diff --git a/meeting1v1/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/ic_launcher_background.png b/meeting1v1/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000..d09494e Binary files /dev/null and b/meeting1v1/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/ic_launcher_background.png differ diff --git a/meeting1v1/build/intermediates/packaged_res/debug/drawable/hang_up.png b/meeting1v1/build/intermediates/packaged_res/debug/drawable/hang_up.png new file mode 100644 index 0000000..5edc980 Binary files /dev/null and b/meeting1v1/build/intermediates/packaged_res/debug/drawable/hang_up.png differ diff --git a/meeting1v1/build/intermediates/packaged_res/debug/layout/activity_create_room.xml b/meeting1v1/build/intermediates/packaged_res/debug/layout/activity_create_room.xml new file mode 100644 index 0000000..5d4bdf1 --- /dev/null +++ b/meeting1v1/build/intermediates/packaged_res/debug/layout/activity_create_room.xml @@ -0,0 +1,71 @@ + + + + + + + + +