Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
build: bump dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
inotia00 committed Mar 6, 2023
1 parent 5547ee0 commit a83ef6c
Show file tree
Hide file tree
Showing 20 changed files with 52 additions and 129 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
*/

buildscript {
ext.kotlinVersion = '1.7.20'
ext.kotlinVersion = '1.8.0'
ext.coroutineVersion = '1.6.4'

ext.annotationVersion = '1.5.0'
ext.appcompatVersion = '1.5.1'
ext.annotationVersion = '1.6.0'
ext.appcompatVersion = '1.6.1'
ext.coreVersion = '1.9.0'
ext.collectionVersion = '1.3.0-dev01'
ext.fragmentVersion = '1.5.5'
ext.lifecycleVersion = '2.5.1'
ext.materialVersion = '1.7.0'
ext.materialVersion = '1.8.0'
ext.navigationVersion = '2.5.3'
ext.preferenceVersion = '1.2.0'
ext.webkitVersion = '1.5.0'
ext.webkitVersion = '1.6.0'

ext.circleimageviewVersion = '3.1.0'
ext.volleyVersion = '1.2.1'
ext.wireVersion = '4.4.3'
ext.wireVersion = '4.5.1'


ext.androidBuildGradleVersion = '7.3.1'
ext.androidBuildVersionTools = '33.0.1'
ext.androidBuildGradleVersion = '7.4.2'
ext.androidBuildVersionTools = '33.0.2'

ext.androidMinSdk = 23
ext.androidTargetSdk = 29
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Dec 22 22:27:19 CET 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
9 changes: 5 additions & 4 deletions play-services-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion androidCompileSdk
buildToolsVersion androidBuildVersionTools
compileSdk androidCompileSdk
buildToolsVersion '33.0.2'

defaultConfig {
minSdkVersion androidMinSdk
targetSdkVersion androidTargetSdk
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
}
namespace 'org.microg.gms.api'
}

dependencies {
Expand Down
18 changes: 0 additions & 18 deletions play-services-api/src/main/AndroidManifest.xml

This file was deleted.

5 changes: 3 additions & 2 deletions play-services-base-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ android {
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
}
namespace 'org.microg.gms.base.api'
}
6 changes: 0 additions & 6 deletions play-services-base-api/src/main/AndroidManifest.xml

This file was deleted.

6 changes: 3 additions & 3 deletions play-services-base-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ android {
buildToolsVersion androidBuildVersionTools

defaultConfig {
versionName version
minSdkVersion androidMinSdk
targetSdkVersion androidTargetSdk
}
Expand All @@ -31,7 +30,8 @@ android {
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
}
namespace 'org.microg.gms.base.core'
}
2 changes: 1 addition & 1 deletion play-services-base-core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
~ SPDX-FileCopyrightText: 2020, microG Project Team
~ SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.microg.gms.base.core">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<provider
android:name="org.microg.mgms.settings.SettingsProvider"
Expand Down
5 changes: 3 additions & 2 deletions play-services-base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ android {
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
}
namespace 'org.microg.gms.base'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions play-services-base/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
~ limitations under the License.
-->

<manifest package="org.microg.gms.base"
xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application>
<meta-data
Expand Down
9 changes: 5 additions & 4 deletions play-services-basement/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ dependencies {

// Dependencies from play-services-basement:18.0.0
api "androidx.collection:collection:$collectionVersion"
api "androidx.core:core:$coreVersion"
api "androidx.fragment:fragment:$fragmentVersion"
api "androidx.core:core-ktx:$coreVersion"
api "androidx.fragment:fragment-ktx:$fragmentVersion"
}

android {
Expand All @@ -50,7 +50,8 @@ android {
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
}
namespace 'org.microg.gms.basement'
}
18 changes: 0 additions & 18 deletions play-services-basement/src/main/AndroidManifest.xml

This file was deleted.

4 changes: 2 additions & 2 deletions play-services-core-proto/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ sourceSets {
}

compileKotlin {
kotlinOptions.jvmTarget = 1.8
kotlinOptions.jvmTarget = 11
}

compileTestKotlin {
kotlinOptions.jvmTarget = 1.8
kotlinOptions.jvmTarget = 11
}
15 changes: 9 additions & 6 deletions play-services-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ android {
}
}

lintOptions {
disable 'MissingTranslation', 'BatteryLife', 'ImpliedQuantity', 'MissingQuantity', 'InvalidWakeLockTag', 'Range'
}

buildTypes {
release {
Expand All @@ -87,16 +84,22 @@ android {
}

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

packagingOptions {
exclude 'META-INF/ASL2.0'
jniLibs {
useLegacyPackaging false
}
resources {
excludes += ['META-INF/ASL2.0']
}
}
lint {
disable 'MissingTranslation', 'BatteryLife', 'ImpliedQuantity', 'MissingQuantity', 'InvalidWakeLockTag', 'Range'
}
namespace 'com.mgoogle.android.gms'
}

if (file('user.gradle').exists()) {
Expand Down
10 changes: 5 additions & 5 deletions play-services-core/microg-ui-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ android {
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
}

lintOptions {
// TODO: Remove MissingTranslation once we have stable strings and proper translations.
lint {
disable 'MissingTranslation'
}
namespace 'org.microg.tools.ui'

}

dependencies {
Expand Down
18 changes: 0 additions & 18 deletions play-services-core/microg-ui-tools/src/main/AndroidManifest.xml

This file was deleted.

5 changes: 3 additions & 2 deletions play-services-iid-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ android {
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
}
namespace 'org.microg.gms.iid.api'
}

dependencies {
Expand Down
18 changes: 0 additions & 18 deletions play-services-iid-api/src/main/AndroidManifest.xml

This file was deleted.

5 changes: 3 additions & 2 deletions play-services-tasks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ android {
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11
}
namespace 'org.microg.gms.tasks'
}

dependencies {
Expand Down
7 changes: 0 additions & 7 deletions play-services-tasks/src/main/AndroidManifest.xml

This file was deleted.

0 comments on commit a83ef6c

Please sign in to comment.