diff options
author | euxane | 2024-09-18 23:41:13 +0200 |
---|---|---|
committer | euxane | 2024-09-18 23:41:13 +0200 |
commit | 8ebbb2a54d31e5a88e4e89662bb4aec8d02c2d32 (patch) | |
tree | 4a56607546c9abf2de56018f69722e0516dc7044 /app | |
parent | 6b0397c56891a9ff3f4da3adafb4cea1520515eb (diff) | |
download | tincapp-8ebbb2a54d31e5a88e4e89662bb4aec8d02c2d32.tar.gz |
project: gradle 8.0.2 -> 8.4.2
Together with necessary adjustments for Kotlin and build options.
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index f7aaa6a..da1ef2b 100644 --- a/app/build.gradle +++ b/app/build.gradle | |||
@@ -67,10 +67,20 @@ android { | |||
67 | } | 67 | } |
68 | 68 | ||
69 | buildFeatures { | 69 | buildFeatures { |
70 | buildConfig = true | ||
70 | dataBinding = true | 71 | dataBinding = true |
71 | viewBinding = true | 72 | viewBinding = true |
72 | } | 73 | } |
73 | 74 | ||
75 | compileOptions { | ||
76 | sourceCompatibility JavaVersion.VERSION_17 | ||
77 | targetCompatibility JavaVersion.VERSION_17 | ||
78 | } | ||
79 | |||
80 | kotlinOptions { | ||
81 | jvmTarget = '17' | ||
82 | } | ||
83 | |||
74 | namespace 'org.pacien.tincapp' | 84 | namespace 'org.pacien.tincapp' |
75 | } | 85 | } |
76 | 86 | ||