Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5affca0 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Remove shared/common SDK version definitions

parent 10d35b44
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
COMPILE_SDK_VERSION=29
MIN_SDK_VERSION=21
TARGET_SDK_VERSION=29
android.enableJetifier=true
android.useAndroidX=true
+3 −3
Original line number Diff line number Diff line
apply plugin: 'com.android.library'

android {
    compileSdkVersion COMPILE_SDK_VERSION.toInteger()
    compileSdkVersion 29

    defaultConfig {
        minSdkVersion MIN_SDK_VERSION.toInteger()
        targetSdkVersion TARGET_SDK_VERSION.toInteger()
        minSdkVersion 21
        targetSdkVersion 29

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

+3 −3
Original line number Diff line number Diff line
apply plugin: 'com.android.library'

android {
    compileSdkVersion COMPILE_SDK_VERSION.toInteger()
    compileSdkVersion 29

    defaultConfig {
        minSdkVersion MIN_SDK_VERSION.toInteger()
        targetSdkVersion TARGET_SDK_VERSION.toInteger()
        minSdkVersion 21
        targetSdkVersion 29

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

+3 −3
Original line number Diff line number Diff line
@@ -19,12 +19,12 @@ plugins {
}

android {
    compileSdkVersion COMPILE_SDK_VERSION.toInteger()
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

    defaultConfig {
        minSdkVersion MIN_SDK_VERSION
        targetSdkVersion TARGET_SDK_VERSION
        minSdkVersion 21
        targetSdkVersion 29

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        consumerProguardFiles "consumer-rules.pro"
+3 −3
Original line number Diff line number Diff line
apply plugin: 'com.android.application'

android {
    compileSdkVersion COMPILE_SDK_VERSION.toInteger()
    compileSdkVersion 29
    defaultConfig {
        applicationId "foundation.e.tasks"
        minSdkVersion MIN_SDK_VERSION.toInteger()
        targetSdkVersion TARGET_SDK_VERSION.toInteger()
        minSdkVersion 21
        targetSdkVersion 29
        versionCode 7000
        versionName '1.4.2'
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Loading