Skip to content

Commit 13bc879

Browse files
authored
Merge branch 'master' into fix_crash_by_gamer
2 parents 0da84e3 + 352f2d7 commit 13bc879

290 files changed

Lines changed: 9120 additions & 961 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
distribution: "temurin"
3636
java-version: "17"
3737
- name: "Setup Gradle"
38-
uses: gradle/actions/setup-gradle@v5
38+
uses: gradle/actions/setup-gradle@v6
3939
with:
4040
cache-encryption-key: ${{ secrets.GradleEncryptionKey }}
4141
build-scan-publish: true

.github/workflows/dependency-submission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
distribution: "temurin"
2323
java-version: "17"
2424
- name: "Generate and submit gradle dependency graph"
25-
uses: gradle/actions/dependency-submission@v5
25+
uses: gradle/actions/dependency-submission@v6
2626
with:
2727
cache-encryption-key: ${{ secrets.GradleEncryptionKey }}
2828
dependency-graph-continue-on-failure: true

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ buildscript {
1414
ext.appcompatVersion = '1.6.1'
1515
ext.biometricVersion = '1.1.0'
1616
ext.coreVersion = '1.12.0'
17+
ext.credentialsVersion = '1.2.0'
1718
ext.fragmentVersion = '1.6.2'
1819
ext.lifecycleVersion = '2.7.0'
1920
ext.loaderVersion = '1.1.0'
@@ -123,4 +124,3 @@ subprojects {
123124
if (hasModule("hms", false)) maven {url 'https://developer.huawei.com/repo/'}
124125
}
125126
}
126-

gradle/publish-android.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ afterEvaluate {
4646
repositories {
4747
maven {
4848
name = 'sonatype'
49-
url = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
49+
url = 'https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/'
5050
credentials {
5151
username project.getProperty('sonatype.username')
5252
password project.getProperty('sonatype.password')

gradle/publish-java.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ afterEvaluate {
5959
repositories {
6060
maven {
6161
name = 'sonatype'
62-
url = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
62+
url = 'https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/'
6363
credentials {
6464
username project.getProperty('sonatype.username')
6565
password project.getProperty('sonatype.password')
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
</resources>
3+
<string name="perm_ad_id_description">একটি প্রকাশক অ্যাপকে সরাসরি বা পরোক্ষভাবে একটি বৈধ বিজ্ঞাপন আইডি অ্যাক্সেস করার অনুমতি দেয়।</string>
4+
</resources>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
</resources>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2026 microG Project Team
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package com.google.android.gms.findmydevice.spot;
7+
8+
parcelable CachedSpotDevice;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2026 microG Project Team
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package com.google.android.gms.findmydevice.spot;
7+
8+
parcelable ChangeFindMyDeviceSettingsRequest;
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2026 microG Project Team
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package com.google.android.gms.findmydevice.spot;
7+
8+
parcelable ChangeFindMyDeviceSettingsResponse;

0 commit comments

Comments
 (0)