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
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2020 microG Team
# SPDX-FileCopyrightText: 2026 microG Team
# SPDX-License-Identifier: CC0-1.0

name: Build
Expand All @@ -7,14 +7,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-java@v3

- uses: actions/setup-java@v5
with:
distribution: adopt
distribution: temurin
java-version: 17
cache: gradle

- run: ./gradlew --no-daemon build
env:
TERM: dumb
6 changes: 3 additions & 3 deletions .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2020 microG Team
# SPDX-FileCopyrightText: 2026 microG Team
# SPDX-License-Identifier: CC0-1.0

name: REUSE Compliance Check
Expand All @@ -7,5 +7,5 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: fsfe/reuse-action@v1
- uses: actions/checkout@v7
- uses: fsfe/reuse-action@v6
4 changes: 2 additions & 2 deletions .reuse/dep5
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Files: services-framework-proxy/src/main/res/mipmap-*/*.png
Copyright: 2015 microG Project Team
Files: services-framework-proxy/src/main/res/mipmap-*/*.webp
Copyright: 2026 microG Project Team
License: CC-BY-SA-4.0
49 changes: 0 additions & 49 deletions build.gradle

This file was deleted.

9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* SPDX-FileCopyrightText: 2026 microG Project Team
* SPDX-License-Identifier: Apache-2.0
*/

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
}
20 changes: 20 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2026 microG Project Team
# SPDX-License-Identifier: Apache-2.0

# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. For more details, visit
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
# org.gradle.parallel=true
# When enabled, the Configuration Cache allows Gradle to skip the configuration
# phase entirely if nothing that affects the build configuration (such as build scripts)
# has changed. Additionally, Gradle applies performance optimizations to task execution.
org.gradle.configuration-cache=true
10 changes: 10 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# SPDX-FileCopyrightText: 2026 microG Project Team
# SPDX-License-Identifier: Apache-2.0

[versions]
agp = "9.2.1"

[libraries]

[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 4 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# SPDX-FileCopyrightText: 2015, microG Project Team
# SPDX-FileCopyrightText: 2026, microG Project Team
# SPDX-License-Identifier: CC0-1.0

#Sun Jun 28 12:50:20 IST 2026
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
33 changes: 19 additions & 14 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 14 additions & 13 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 0 additions & 28 deletions services-framework-proxy/build.gradle

This file was deleted.

35 changes: 35 additions & 0 deletions services-framework-proxy/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* SPDX-FileCopyrightText: 2026 microG Project Team
* SPDX-License-Identifier: Apache-2.0
*/

plugins {
alias(libs.plugins.android.application)
}

android {
namespace = "com.google.android.gsf"
compileSdk {
version = release(37)
}

defaultConfig {
applicationId = "com.google.android.gsf"
minSdk = 18
targetSdk = 37
versionCode = 9
versionName = "v0.1.1"
}

buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
}
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
10 changes: 5 additions & 5 deletions services-framework-proxy/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ SPDX-FileCopyrightText: 2015 microG Project Team
~ SPDX-License-Identifier: Apache-2.0
-->

<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-FileCopyrightText: 2026 microG Project Team
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
Expand Down
Loading