Skip to content
Draft
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
38 changes: 23 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion '25.0.0'
namespace "homebrew.fuyuri_seiji.org.conditionalreminder"
compileSdkVersion 36
buildToolsVersion '36.0.0'

defaultConfig {
applicationId "homebrew.fuyuri_seiji.org.conditionalreminder"
minSdkVersion 19
targetSdkVersion 22
minSdkVersion 21
targetSdkVersion 36
versionCode 1
versionName "1.0"
}
Expand All @@ -17,18 +18,25 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lint {
baseline = file("lint-baseline.xml")
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile "com.android.support:percent:23.3.0"
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:cardview-v7:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.android.support:design:23.3.0'

compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.getbase:floatingactionbutton:1.3.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "androidx.percentlayout:percentlayout:1.0.0"
implementation 'com.google.android.gms:play-services-base:18.3.0'
implementation 'com.google.android.libraries.places:places:3.1.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.3.0'
implementation 'com.google.android.material:material:1.10.0'
implementation 'com.squareup.picasso:picasso:2.8'
implementation 'com.getbase:floatingactionbutton:1.10.1'
}
Loading