aboutsummaryrefslogtreecommitdiffstats
path: root/app/build.gradle
diff options
context:
space:
mode:
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
+ }
+}