diff options
| author | 2023-03-29 16:25:24 +0200 | |
|---|---|---|
| committer | 2023-03-30 21:44:42 +0200 | |
| commit | eea0044b890fba335b96cb77cb77da6b9640b696 (patch) | |
| tree | cf6b44bdcabd78a23c7ff86006eb5ed21774c4a4 /app/build.gradle | |
| download | searchshortcut-master.tar.xz searchshortcut-master.zip | |
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/build.gradle')
| -rw-r--r-- | app/build.gradle | 21 |
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 + } +} |
