@@ -4,12 +4,12 @@ plugins {
|
||||
|
||||
android {
|
||||
namespace 'com.chatrtc.app'
|
||||
compileSdk 34
|
||||
compileSdk 33
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.chatrtc.app"
|
||||
minSdk 24
|
||||
targetSdk 34
|
||||
targetSdk 33
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
@@ -30,16 +30,30 @@ android {
|
||||
buildFeatures {
|
||||
viewBinding true
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
abortOnError false
|
||||
checkReleaseBuilds false
|
||||
disable 'MissingClass'
|
||||
}
|
||||
}
|
||||
|
||||
configurations.all {
|
||||
resolutionStrategy {
|
||||
force 'org.jetbrains.kotlin:kotlin-stdlib:1.8.20'
|
||||
force 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20'
|
||||
force 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||
implementation 'com.google.android.material:material:1.9.0'
|
||||
implementation 'com.google.android.material:material:1.6.1'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||
implementation 'androidx.recyclerview:recyclerview:1.3.1'
|
||||
|
||||
// WebRTC
|
||||
implementation 'org.webrtc:google-webrtc:1.0.32006'
|
||||
// WebRTC - Using JitPack hosted Google WebRTC
|
||||
implementation 'com.github.webrtc-sdk:android:104.5112.01'
|
||||
|
||||
// Socket.IO for signaling
|
||||
implementation 'io.socket:socket.io-client:2.0.1'
|
||||
@@ -47,13 +61,14 @@ dependencies {
|
||||
// JSON parsing
|
||||
implementation 'com.google.code.gson:gson:2.10.1'
|
||||
|
||||
// Permissions
|
||||
implementation 'androidx.activity:activity:1.7.2'
|
||||
implementation 'androidx.fragment:fragment:1.6.1'
|
||||
// Permissions - using older versions compatible with Java 11
|
||||
implementation 'androidx.activity:activity:1.6.1'
|
||||
implementation 'androidx.fragment:fragment:1.5.5'
|
||||
|
||||
// Emoji support
|
||||
implementation 'com.vanniktech:emoji-java:0.16.0'
|
||||
implementation 'com.vanniktech:emoji-google:0.16.0'
|
||||
// Basic emoji support
|
||||
implementation 'androidx.emoji2:emoji2:1.3.0'
|
||||
implementation 'androidx.emoji2:emoji2-views-helper:1.3.0'
|
||||
implementation 'androidx.emoji2:emoji2-bundled:1.3.0'
|
||||
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
||||
|
||||
Referencia en una nueva incidencia
Block a user