aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle37
1 files changed, 37 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..c68f611
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,37 @@
1plugins {
2 alias(libs.plugins.android.application)
3}
4
5android {
6 namespace 'tel.zajc.rtv'
7 //noinspection GradleDependency
8 compileSdk 24
9
10 defaultConfig {
11 applicationId "tel.zajc.rtv"
12 minSdk 24
13 //noinspection ExpiredTargetSdkVersion
14 targetSdk 24
15 versionCode 1
16 versionName "1.0"
17
18 }
19
20 buildTypes {
21 release {
22 minifyEnabled false
23 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
24 }
25 }
26 compileOptions {
27 sourceCompatibility JavaVersion.VERSION_1_8
28 targetCompatibility JavaVersion.VERSION_1_8
29 }
30 buildFeatures {
31 viewBinding true
32 }
33}
34
35dependencies {
36}
37