Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.gradle « app - github.com/ClusterM/sony-headphones-control.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f708302606be4ec79a529bd5d23008ac8ecf2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.clusterrr.sonyheadphonescontrol"
        minSdkVersion 18
        targetSdkVersion 28
        versionCode 2
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    applicationVariants.all { variant ->
        variant.outputs.all { output ->
            def formattedDate = new Date().format('yyMMdd-HHmmss')
            outputFileName = "SonyHeadphonesControl-v${defaultConfig.versionCode}-${formattedDate}.apk"
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation group: 'com.twofortyfouram', name: 'android-annotation', version: "${TWOFORTYFOURAM_ANNOTATION_VERSION_MATCHER}"
    implementation group: 'com.twofortyfouram', name: 'android-assertion', version: "${TWOFORTYFOURAM_ASSERTION_VERSION_MATCHER}"
    implementation group: 'com.twofortyfouram', name: 'android-plugin-api-for-locale', version: "${TWOFORTYFOURAM_PLUGIN_API_VERSION_MATCHER}"
    implementation group: 'com.twofortyfouram', name: 'android-plugin-client-sdk-for-locale', version: "${TWOFORTYFOURAM_PLUGIN_CLIENT_SDK_VERSION_MATCHER}"
    implementation group: 'com.twofortyfouram', name: 'android-spackle', version: "${TWOFORTYFOURAM_SPACKLE_VERSION_MATCHER}"
}