File tree 4 files changed +9
-6
lines changed
src/main/java/org/thunderdog/challegram/unsorted
buildSrc/src/main/kotlin/me/vkryl/plugin
4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -536,7 +536,7 @@ target_compile_definitions(tgvoip PRIVATE
536
536
TGVOIP_NO_GROUP_CALLS
537
537
TGVOIP_PACKAGE_PATH="org/thunderdog/challegram/voip"
538
538
TGVOIP_PEER_TAG_VARIABLE_NAME="peerTag"
539
- TGVOIP_ENDPOINT_CLASS="org/drinkless/td/libcore/telegram /TdApi$CallServer"
539
+ TGVOIP_ENDPOINT_CLASS="org/drinkless/tdlib /TdApi$CallServer"
540
540
541
541
USE_KISS_FFT
542
542
WEBRTC_APM_DEBUG_DUMP=0
Original file line number Diff line number Diff line change @@ -73,6 +73,8 @@ public static synchronized boolean loadLibrary () {
73
73
if (Config .SO_SHARED ) {
74
74
libraries .add ("c++_shared" );
75
75
}
76
+ libraries .add ("crypto" );
77
+ libraries .add ("ssl" );
76
78
libraries .add ("tdjni" );
77
79
libraries .add ("leveldbjni" );
78
80
libraries .add ("challegram.23" );
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import com.android.build.gradle.AppExtension
22
22
import com.android.build.gradle.BaseExtension
23
23
import com.android.build.gradle.LibraryExtension
24
24
import com.android.build.gradle.ProguardFiles
25
+ import com.android.build.gradle.internal.dsl.BaseAppModuleExtension
25
26
import getLongOrThrow
26
27
import getOrThrow
27
28
import loadProperties
@@ -291,10 +292,11 @@ open class ModulePlugin : Plugin<Project> {
291
292
}
292
293
}
293
294
294
- buildTypes {
295
- lintOptions {
296
- disable(" MissingTranslation" )
297
- isCheckDependencies = true
295
+ if (this is BaseAppModuleExtension ) {
296
+ // FIXME[gradle]: lint is still not available through AppExtension
297
+ lint {
298
+ disable + = " MissingTranslation"
299
+ checkDependencies = true
298
300
}
299
301
}
300
302
Original file line number Diff line number Diff line change @@ -16,6 +16,5 @@ android.useAndroidX=true
16
16
android.nonFinalResIds =true
17
17
android.nonTransitiveRClass =true
18
18
org.gradle.jvmargs =-Xms1024m -Xmx8192m -Dkotlin.daemon.jvm.options\="-Xms1024m -Xmx8192M" -Dfile.encoding\=UTF-8
19
- org.gradle.daemon =true
20
19
org.gradle.parallel =true
21
20
android.defaults.buildfeatures.buildconfig =true
You can’t perform that action at this time.
0 commit comments