Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/build
/captures
.externalNativeBuild
/.idea
10 changes: 6 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility kotlin_version
targetCompatibility kotlin_version
}

packagingOptions {
Expand All @@ -37,10 +37,12 @@ android {
buildFeatures {
viewBinding true
}
buildToolsVersion '28.0.3'
ndkVersion '27.0.12077973'
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
Expand Down Expand Up @@ -95,4 +97,4 @@ dependencies {
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'
}

apply plugin: 'com.google.gms.google-services'
//apply plugin: 'com.google.gms.google-services'
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ buildscript {

repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
jcenter()
maven {
url "https://mirrors.huaweicloud.com/repository/maven/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
Expand All @@ -27,6 +30,9 @@ allprojects {
jcenter()
mavenCentral()
mavenLocal()
maven {
url "https://mirrors.huaweicloud.com/repository/maven/"
}
}
}

Expand Down