android/michelson.studio/michelson/build.gradle
changeset 0 16509f98f301
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/android/michelson.studio/michelson/build.gradle	Fri Nov 22 09:40:16 2019 +0100
@@ -0,0 +1,45 @@
+apply plugin: 'com.android.application'
+
+android {
+	signingConfigs {
+		hh {
+			keyAlias 'androiddebugkey'
+			keyPassword 'android'
+			storeFile file('/home/hh/.android/debug.keystore')
+			storePassword 'android'
+		}
+	}
+	
+	compileSdkVersion 28
+
+	defaultConfig {
+		applicationId 'hh.michelson'
+		minSdkVersion 22
+		targetSdkVersion 26
+		versionCode 1
+		versionName "1.0"
+		testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+		signingConfig signingConfigs.hh
+	}
+	buildTypes {
+		release {
+			signingConfig signingConfigs.hh
+		}
+		debug {
+			debuggable false
+		}
+	}
+	productFlavors {
+	}
+}
+
+dependencies {
+	implementation project(':lib031-release')
+	implementation fileTree(include: ['*.jar'], dir: 'libs')
+    implementation 'com.android.support:support-v4:28.0.0'
+    implementation 'com.android.support:appcompat-v7:28.0.0'
+    implementation 'com.android.support:preference-v7:28.0.0'
+    implementation 'com.android.support:coordinatorlayout:28.0.0'
+    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
+    implementation 'com.android.support:design:28.0.0'
+}