Skip to content

Commit

Permalink
Gradle update to 8.0.2 2 commits merged
Browse files Browse the repository at this point in the history
    pick 1f4c0d8 Gradle update to 8.0.2
    squash d07622a Gradle update to 8.0.2
  • Loading branch information
amarradi authored and sealor committed Jul 7, 2023
1 parent 054c117 commit 2113a7d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 10 deletions.
21 changes: 17 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,32 @@
apply plugin: 'com.android.application'
plugins {
id 'com.android.application'
}

android {
compileSdkVersion 16
buildToolsVersion "26.0.2"
compileSdkVersion 33

defaultConfig {
applicationId "de.ubuntix.android.birthdayreminder"
minSdkVersion 7
targetSdkVersion 16
targetSdkVersion 31
versionCode 1
versionName "2.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
namespace 'de.ubuntix.android.birthdayreminder'
}

dependencies {

}
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
// jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.android.tools.build:gradle:8.0.2'
}
}

allprojects {
repositories {
jcenter()
mavenCentral()
google()
// jcenter()
}
}
5 changes: 2 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Sat Oct 14 09:48:46 CEST 2017
distributionBase=GRADLE_USER_HOME
#Sun Jun 18 20:56:20 CEST 2023
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

0 comments on commit 2113a7d

Please sign in to comment.