android app for otb-cloud uploading
https://otb-cloud.outsidethebox.top/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
48 lines
1.0 KiB
plugins { |
|
id 'com.android.application' |
|
id 'org.jetbrains.kotlin.android' |
|
} |
|
|
|
android { |
|
namespace 'top.outsidethebox.otbcloud' |
|
compileSdk 34 |
|
|
|
defaultConfig { |
|
applicationId "top.outsidethebox.otbcloud" |
|
minSdk 23 |
|
targetSdk 34 |
|
versionCode 22 |
|
versionName "0.2.2" |
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
|
} |
|
|
|
buildTypes { |
|
release { |
|
minifyEnabled false |
|
} |
|
debug { |
|
minifyEnabled false |
|
} |
|
} |
|
|
|
compileOptions { |
|
sourceCompatibility JavaVersion.VERSION_17 |
|
targetCompatibility JavaVersion.VERSION_17 |
|
} |
|
|
|
kotlinOptions { |
|
jvmTarget = '17' |
|
} |
|
|
|
buildFeatures { |
|
viewBinding true |
|
} |
|
} |
|
|
|
dependencies { |
|
implementation 'androidx.core:core-ktx:1.13.1' |
|
implementation 'androidx.appcompat:appcompat:1.7.0' |
|
implementation 'com.google.android.material:material:1.12.0' |
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' |
|
}
|
|
|