aboutsummaryrefslogtreecommitdiffstats
path: root/app/build.gradle
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2022-10-11 19:44:04 +0200
committerMaksymilian Jopek <maks@jopek.eu>2022-10-11 19:44:04 +0200
commit7ebdab2798013e3b47ff981335fae9d76f104d7c (patch)
tree8ff73c88d0e0d23c48dfaa71476df0dc1b253188 /app/build.gradle
downloadtaupngamoni-7ebdab2798013e3b47ff981335fae9d76f104d7c.tar.gz
taupngamoni-7ebdab2798013e3b47ff981335fae9d76f104d7c.tar.zst
taupngamoni-7ebdab2798013e3b47ff981335fae9d76f104d7c.zip
Initial commit, not much this time
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle45
1 files changed, 45 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..c758fcf
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,45 @@
+plugins {
+ id 'com.android.application'
+}
+
+android {
+ namespace 'com.jopek.taupngamoni'
+ compileSdk 32
+
+ defaultConfig {
+ applicationId "com.jopek.taupngamoni"
+ minSdk 28
+ targetSdk 32
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+ buildFeatures {
+ viewBinding true
+ }
+}
+
+dependencies {
+
+ implementation 'androidx.appcompat:appcompat:1.5.1'
+ implementation 'com.google.android.material:material:1.6.1'
+ implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
+ implementation 'com.google.android.material:material:1.6.1'
+ implementation 'androidx.legacy:legacy-support-v4:1.0.0'
+ implementation 'androidx.recyclerview:recyclerview:1.2.1'
+ testImplementation 'junit:junit:4.13.2'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.3'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
+} \ No newline at end of file