Initial commit

This commit is contained in:
Tony
2026-04-27 08:00:32 +08:00
commit fbfc24c9e5
20 changed files with 1366 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
group 'com.dalimaster.ble_relay_host'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.9.20'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
rootProject.allprojects {
repositories {
google()
mavenCentral()
}
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
namespace 'com.dalimaster.ble_relay_host'
compileSdk 34
defaultConfig {
minSdk 21
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}