aboutsummaryrefslogtreecommitdiffstats
path: root/app/build.gradle
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2023-03-29 16:25:24 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2023-03-30 21:44:42 +0200
commiteea0044b890fba335b96cb77cb77da6b9640b696 (patch)
treecf6b44bdcabd78a23c7ff86006eb5ed21774c4a4 /app/build.gradle
downloadsearchshortcut-master.tar.xz
searchshortcut-master.zip
Initial commitHEADmaster
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..60b0978
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,21 @@
+plugins {
+ id 'com.android.application'
+}
+
+android {
+ namespace 'com.zx2c4.searchshortcut'
+ compileSdk 33
+
+ defaultConfig {
+ applicationId "com.zx2c4.searchshortcut"
+ minSdk 23
+ targetSdk 33
+ versionCode 2
+ versionName "1.0"
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+}