12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 34
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 34
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- ndk {
- abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64', 'x86'
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- namespace 'cn.wildfirechat.uni.pttclient'
- }
- repositories {
- flatDir {
- dirs 'libs'
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation project(path: ':uni-client-module')
- compileOnly 'com.alibaba:fastjson:1.2.83'
- compileOnly fileTree(include: ['uniapp-v8-release.aar'], dir: '../app/libs')
- compileOnly project(":client")
- api project(":pttclient")
- }
|