Skip to navigation
Where to set the SDK version for compile an Android App with gradle
03.01.24
Where to set the SDK version for compile an Android App with gradle under app/build.gradle ```java plugins { id('com.android.application') id("org.jetbrains.dokka") } android { compileSdkVersion 34 useLibrary 'android.test.mock' defaultConfig { applicationId 'org.calantas.mygeo' minSdkVersion 24 targetSdkVersion 34 versionCode 1 versionName '1.0.0' } packagingOptions { exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/NOTICE' exclude 'META-INF/LICENSE' exclude 'META-INF/LICENSE.txt' exclude 'META-INF/NOTICE.txt' } } dependencies { implementation "com.android.support:support-v13:+" implementation "com.android.support:appcompat-v7:22.2.0" implementation 'com.google.code.gson:gson:2.9.0' } ```
https://docs.gradle.org/current/userguide/userguide.html
Reply
Anonymous
Information Epoch 1742187848
Worse is better.
Home
Notebook
Contact us