|
@@ -0,0 +1,80 @@
|
|
|
|
|
+// 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
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ compileSdkVersion 28
|
|
|
|
|
+
|
|
|
|
|
+ signingConfigs {
|
|
|
|
|
+ config {
|
|
|
|
|
+ keyAlias 'HDC_HN_RELEASE_KEY'
|
|
|
|
|
+ keyPassword 'hdchnsys1776'
|
|
|
|
|
+ storeFile file('../HDC_HN_RELEASE_KEY.jks')
|
|
|
|
|
+ storePassword 'hdchnsys1776'
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ defaultConfig {
|
|
|
|
|
+ applicationId "kr.co.icontrols.autopicture"
|
|
|
|
|
+ minSdkVersion 17
|
|
|
|
|
+ targetSdkVersion 17
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ applicationVariants.all { variant ->
|
|
|
|
|
+ variant.outputs.all { output ->
|
|
|
|
|
+ outputFileName = new File("../", "AutoPicture.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 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
|
+ implementation files('libs/WallPadAPI.jar')
|
|
|
|
|
+ implementation files('libs/WallPadSupport.jar')
|
|
|
|
|
+}
|