fix: restore AIDE build config and layer live find map correctly
This commit is contained in:
+5
-19
@@ -1,37 +1,23 @@
|
||||
plugins {
|
||||
id 'com.android.application'
|
||||
}
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
namespace 'com.wytehat.btlogger'
|
||||
compileSdk 34
|
||||
compileSdkVersion 21
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.wytehat.btlogger"
|
||||
// BLE scanning (ScanCallback, ScanResult) is API 21+, which the
|
||||
// range finder relies on.
|
||||
minSdk 21
|
||||
// Deliberately left at 29: the service uses version-guarded
|
||||
// reflection and legacy PendingIntent flags that change behaviour
|
||||
// at targetSdk 31+.
|
||||
targetSdk 29
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 29
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user