mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 16:34:18 +09:00
68 lines
2.4 KiB
Groovy
68 lines
2.4 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion = rootProject.ext.compileApi
|
|
buildToolsVersion = rootProject.ext.toolsVersion
|
|
packagingOptions {
|
|
jniLibs {
|
|
pickFirsts += ['lib/arm64-v8a/libfreerdp3.so', 'lib/armeabi-v7a/libfreerdp3.so', 'lib/x86/libfreerdp3.so', 'lib/x86_64/libfreerdp3.so', 'lib/arm64-v8a/libfreerdp-client3.so', 'lib/armeabi-v7a/libfreerdp-client3.so', 'lib/x86/libfreerdp-client3.so', 'lib/x86_64/libfreerdp-client3.so', 'lib/arm64-v8a/libwinpr3.so', 'lib/armeabi-v7a/libwinpr3.so', 'lib/x86/libwinpr3.so', 'lib/x86_64/libwinpr3.so']
|
|
}
|
|
}
|
|
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minApi
|
|
targetSdkVersion rootProject.ext.targetApi
|
|
vectorDrawables.useSupportLibrary = true
|
|
ndkVersion = "29.0.13113456"
|
|
|
|
ndk {
|
|
File jniLibsDirectory = new File(project.projectDir, "src/main/jniLibs")
|
|
ArrayList<String> abiFiltersList = new ArrayList<String>()
|
|
if (new File(jniLibsDirectory, "arm64-v8a/libfreerdp3.so").exists())
|
|
abiFiltersList.add("arm64-v8a")
|
|
if (new File(jniLibsDirectory, "armeabi-v7a/libfreerdp3.so").exists())
|
|
abiFiltersList.add("armeabi-v7a")
|
|
if (new File(jniLibsDirectory, "x86_64/libfreerdp3.so").exists())
|
|
abiFiltersList.add("x86_64")
|
|
if (new File(jniLibsDirectory, "x86/libfreerdp3.so").exists())
|
|
abiFiltersList.add("x86")
|
|
|
|
//noinspection ChromeOsAbiSupport
|
|
abiFilters = abiFiltersList
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments "-DWITH_CLIENT_CHANNELS=ON"
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
debug {
|
|
jniDebuggable true
|
|
renderscriptDebuggable true
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path file('src/main/cpp/CMakeLists.txt')
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
|
implementation 'com.android.support:support-vector-drawable:28.0.0'
|
|
}
|