12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // This buildscript{} block configures the code driving the build
- buildscript {
- /**
- * The nested repositories{} block declares that this build uses the
- * jcenter repository.
- */
- repositories {
- jcenter()
- google()
- }
- /**
- * This block declares a dependency on the 2.3.3 version
- * of the Gradle plugin for the buildscript.
- */
- dependencies {
- classpath 'com.android.tools.build:gradle:4.1.1'
- }
- }
- allprojects {
- repositories {
- jcenter()
- google()
- }
- }
- apply plugin: 'com.android.application'
- android {
- lintOptions {
- disable "ResourceType"
- checkReleaseBuilds false
- }
- signingConfigs {
- config {
- keyAlias 'HDC_HN_RELEASE_KEY'
- keyPassword 'hdchnsys1776'
- storeFile file('../HDC_HN_RELEASE_KEY.jks')
- storePassword 'hdchnsys1776'
- }
- }
- compileSdkVersion 28
- defaultConfig {
- applicationId "kr.co.icontrols.wallpadglobalbutton"
- minSdkVersion 23
- targetSdkVersion 28
- }
- applicationVariants.all { variant ->
- variant.outputs.all { output ->
- outputFileName = new File("../", "WallPadGlobalButton.apk");
- }
- }
- buildTypes {
- release {
- signingConfig signingConfigs.config
- // minifyEnabled true
- // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- release_secured {
- signingConfig signingConfigs.config
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- debug {
- signingConfig signingConfigs.config
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.1.0-alpha05'
- implementation 'androidx.media:media:1.1.0-beta01' // TODO: TO BE REMOVED
- testImplementation 'junit:junit:4.13-beta-3'
- androidTestImplementation 'androidx.test:runner:1.2.0'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- }
|