首次提交
71
tuichat/build.gradle
Normal file
@@ -0,0 +1,71 @@
|
||||
plugins {
|
||||
id 'com.android.library'
|
||||
}
|
||||
//apply from: "../MobSdk.gradle"
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
android {
|
||||
compileSdkVersion 30
|
||||
buildToolsVersion "30.0.3"
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 30
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
renderscriptSupportModeEnabled false
|
||||
renderscriptTargetApi 30
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
}
|
||||
|
||||
// 主题资源文件夹
|
||||
sourceSets {
|
||||
main {
|
||||
res.srcDirs += "src/main/res-minimalistui"
|
||||
res.srcDirs += "src/main/res-light"
|
||||
res.srcDirs += "src/main/res-lively"
|
||||
res.srcDirs += "src/main/res-serious"
|
||||
}
|
||||
}
|
||||
repositories {
|
||||
flatDir {
|
||||
dirs '../IMLib/libs'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
afterEvaluate {
|
||||
generateReleaseBuildConfig.enabled = false
|
||||
generateDebugBuildConfig.enabled = false
|
||||
}
|
||||
|
||||
repositories {
|
||||
flatDir {
|
||||
dirs '../lib_base/libs'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: "libs", include: ["*.jar"])
|
||||
implementation 'androidx.appcompat:appcompat:1.3.0'
|
||||
implementation 'com.google.android.material:material:1.3.0'
|
||||
implementation 'com.github.bumptech.glide:glide:4.12.0'
|
||||
implementation 'com.google.code.gson:gson:2.8.7'
|
||||
implementation 'androidx.viewpager2:viewpager2:1.0.0'
|
||||
implementation 'androidx.datastore:datastore-preferences:1.0.0'
|
||||
implementation 'androidx.datastore:datastore-preferences-rxjava3:1.0.0'
|
||||
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
api project(':tuicore')
|
||||
api project(':lib_base')
|
||||
|
||||
}
|
||||
103
tuichat/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,103 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.tencent.qcloud.tuikit.tuichat">
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
android:maxSdkVersion="28" />
|
||||
|
||||
<uses-permission android:name="android.permission.CAMERA" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
|
||||
<application>
|
||||
<provider
|
||||
android:name=".TUIChatService"
|
||||
android:authorities="${applicationId}.TUIChat.Init"
|
||||
android:enabled="true"
|
||||
android:exported="false" />
|
||||
|
||||
<activity
|
||||
android:name=".component.imagevideoscan.ImageVideoScanActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait" />
|
||||
|
||||
|
||||
<!-- **************** Classic UI Start **************** -->
|
||||
<activity
|
||||
android:name=".classicui.page.MessageReplyDetailActivity"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="adjustResize|stateHidden" />
|
||||
<activity
|
||||
android:name=".classicui.page.TUIForwardChatActivity"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity
|
||||
android:name=".classicui.page.TUIC2CChatActivity"
|
||||
android:configChanges="keyboardHidden|orientation|screenSize"
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="adjustNothing|stateHidden|adjustResize" />
|
||||
|
||||
|
||||
<activity
|
||||
android:name=".classicui.page.TUIGroupChatActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
||||
|
||||
<activity
|
||||
android:name=".classicui.page.MessageReceiptDetailActivity"
|
||||
android:screenOrientation="portrait" />
|
||||
<activity
|
||||
android:name=".classicui.component.camera.CameraActivity"
|
||||
android:screenOrientation="portrait" />
|
||||
|
||||
<provider
|
||||
android:name=".classicui.ClassicUIService"
|
||||
android:authorities="${applicationId}.TUIChat.ClassicUI.Init"
|
||||
android:enabled="true"
|
||||
android:exported="false" />
|
||||
<!-- **************** Classic UI End **************** -->
|
||||
|
||||
|
||||
<!-- **************** Minimalist UI Start **************** -->
|
||||
<activity
|
||||
android:name=".minimalistui.component.camera.CameraActivity"
|
||||
android:screenOrientation="portrait" />
|
||||
|
||||
<activity
|
||||
android:name=".minimalistui.widget.messagepopmenu.ChatPopActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:theme="@style/ChatTransparentPopActivityStyle"
|
||||
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
||||
|
||||
<activity
|
||||
android:name=".minimalistui.page.TUIC2CChatMinimalistActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
||||
|
||||
<activity
|
||||
android:name=".minimalistui.page.TUIGroupChatMinimalistActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="adjustNothing|stateHidden" />
|
||||
|
||||
<activity
|
||||
android:name=".minimalistui.page.MessageDetailMinimalistActivity"
|
||||
android:screenOrientation="portrait" />
|
||||
|
||||
<activity
|
||||
android:name=".minimalistui.page.TUIForwardChatMinimalistActivity"
|
||||
android:screenOrientation="portrait" />
|
||||
|
||||
<provider
|
||||
android:name=".minimalistui.MinimalistUIService"
|
||||
android:authorities="${applicationId}.TUIChat.MinimalistUI.Init"
|
||||
android:enabled="true"
|
||||
android:exported="false" />
|
||||
<!-- **************** Minimalist UI End **************** -->
|
||||
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
BIN
tuichat/src/main/assets/emoji/[NO]@2x.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
tuichat/src/main/assets/emoji/[OK]@2x.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
tuichat/src/main/assets/emoji/[下雨]@2x.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
tuichat/src/main/assets/emoji/[么么哒]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[乒乓]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[便便]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[信封]@2x.png
Normal file
|
After Width: | Height: | Size: 581 B |
BIN
tuichat/src/main/assets/emoji/[偷笑]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[傲慢]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[再见]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[冷汗]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[凋谢]@2x.png
Normal file
|
After Width: | Height: | Size: 947 B |
BIN
tuichat/src/main/assets/emoji/[刀]@2x.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
tuichat/src/main/assets/emoji/[删除]@2x.png
Normal file
|
After Width: | Height: | Size: 301 B |
BIN
tuichat/src/main/assets/emoji/[勾引]@2x.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
tuichat/src/main/assets/emoji/[发呆]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[发抖]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[可怜]@2x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
tuichat/src/main/assets/emoji/[可爱]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[右哼哼]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[右太极]@2x.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
tuichat/src/main/assets/emoji/[右车头]@2x.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
tuichat/src/main/assets/emoji/[吐]@2x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
tuichat/src/main/assets/emoji/[吓]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[咒骂]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[咖啡]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[啤酒]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[嘘]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[回头]@2x.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
tuichat/src/main/assets/emoji/[困]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[坏笑]@2x.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
tuichat/src/main/assets/emoji/[多云]@2x.png
Normal file
|
After Width: | Height: | Size: 975 B |
BIN
tuichat/src/main/assets/emoji/[大兵]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[大哭]@2x.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
tuichat/src/main/assets/emoji/[太阳]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[奋斗]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[奶瓶]@2x.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
tuichat/src/main/assets/emoji/[委屈]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[害羞]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[尴尬]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[左哼哼]@2x.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
tuichat/src/main/assets/emoji/[左太极]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[左车头]@2x.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
tuichat/src/main/assets/emoji/[差劲]@2x.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
tuichat/src/main/assets/emoji/[弱]@2x.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
tuichat/src/main/assets/emoji/[强]@2x.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
tuichat/src/main/assets/emoji/[彩带]@2x.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
tuichat/src/main/assets/emoji/[彩球]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[得意]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[微笑]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[心碎了]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[快哭了]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[怄火]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[怒]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[惊恐]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[惊讶]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[憨笑]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[手枪]@2x.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
tuichat/src/main/assets/emoji/[打哈欠]@2x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
tuichat/src/main/assets/emoji/[抓狂]@2x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
tuichat/src/main/assets/emoji/[折磨]@2x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
tuichat/src/main/assets/emoji/[抠鼻]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[抱抱]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[抱拳]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[拳头]@2x.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
tuichat/src/main/assets/emoji/[挥手]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[握手]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[撇嘴]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[擦汗]@2x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
tuichat/src/main/assets/emoji/[敲打]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[晕]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[月亮]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[棒棒糖]@2x.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
tuichat/src/main/assets/emoji/[汽车]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[沙发]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[流汗]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[流泪]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[激动]@2x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
tuichat/src/main/assets/emoji/[灯泡]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[炸弹]@2x.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
tuichat/src/main/assets/emoji/[熊猫]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[爆筋]@2x.png
Normal file
|
After Width: | Height: | Size: 508 B |
BIN
tuichat/src/main/assets/emoji/[爱你]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[爱心]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[爱情]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
tuichat/src/main/assets/emoji/[猪头]@2x.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
tuichat/src/main/assets/emoji/[猫咪]@2x.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
tuichat/src/main/assets/emoji/[献吻]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[玫瑰]@2x.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
tuichat/src/main/assets/emoji/[瓢虫]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[疑问]@2x.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
tuichat/src/main/assets/emoji/[白眼]@2x.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
tuichat/src/main/assets/emoji/[皮球]@2x.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
tuichat/src/main/assets/emoji/[睡觉]@2x.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
tuichat/src/main/assets/emoji/[磕头]@2x.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
tuichat/src/main/assets/emoji/[示爱]@2x.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
tuichat/src/main/assets/emoji/[礼品袋]@2x.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
tuichat/src/main/assets/emoji/[礼物]@2x.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |