This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/bdxt-250418/rtkdev/build.gradle

46 lines
1.1 KiB
Groovy
Raw Permalink Normal View History

plugins {
alias(libs.plugins.androidLibrary)
}
android {
namespace 'com.bonus.bdxt'
compileSdk 34
defaultConfig {
//applicationId "com.bonus.bdxt"
minSdk 24
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildToolsVersion '35.0.0'
}
dependencies {
implementation libs.appcompat
implementation libs.material
implementation libs.activity
implementation libs.constraintlayout
implementation project(':libqxwz')
implementation project(':librtk')
compileOnly files('..\\libs\\UnityPlayer21.jar')
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
}