Skip to content

Commit ab301dd

Browse files
committed
build: update F-Droid config
1 parent 7c96290 commit ab301dd

File tree

7 files changed

+141
-140
lines changed

7 files changed

+141
-140
lines changed

.nyx.yml

+6
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,9 @@ services:
7777
REPOSITORY_OWNER: "AndroidIDEOfficial"
7878
REPOSITORY_NAME: "AndroidIDE"
7979
AUTHENTICATION_TOKEN: "{{#environmentVariable}}GH_TOKEN{{/environmentVariable}}"
80+
81+
git:
82+
remotes:
83+
origin:
84+
user: '{{#environmentVariable}}GH_TOKEN{{/environmentVariable}}'
85+
password: ''
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
import org.gradle.api.Project
2+
import java.io.File
3+
4+
/*
5+
* This file is part of AndroidIDE.
6+
*
7+
* AndroidIDE is free software: you can redistribute it and/or modify
8+
* it under the terms of the GNU General Public License as published by
9+
* the Free Software Foundation, either version 3 of the License, or
10+
* (at your option) any later version.
11+
*
12+
* AndroidIDE is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* GNU General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU General Public License
18+
* along with AndroidIDE. If not, see <https://www.gnu.org/licenses/>.
19+
*/
20+
21+
/**
22+
* @author Akash Yadav
23+
*/
24+
object FDroidConfig {
25+
26+
var hasRead: Boolean = false
27+
private set
28+
29+
var isFDroidBuild: Boolean = false
30+
private set
31+
32+
var fDroidVersionName: String? = null
33+
private set
34+
35+
var fDroidVersionCode: Int? = null
36+
private set
37+
38+
const val PROP_FDROID_BUILD = "ide.build.fdroid"
39+
const val PROP_FDROID_BUILD_VERSION = "ide.build.fdroid.version"
40+
const val PROP_FDROID_BUILD_VERCODE = "ide.build.fdroid.vercode"
41+
42+
fun load(project: Project) {
43+
val propsFile = File(project.rootDir, "fdroid.properties")
44+
if (!propsFile.exists() || !propsFile.isFile) {
45+
hasRead = true
46+
isFDroidBuild = false
47+
return
48+
}
49+
50+
val properties = propsFile.let { props ->
51+
java.util.Properties().also {
52+
it.load(props.reader())
53+
}
54+
}
55+
56+
hasRead = true
57+
isFDroidBuild = properties.getProperty(PROP_FDROID_BUILD, null).toBoolean()
58+
59+
fDroidVersionName = properties.getProperty(PROP_FDROID_BUILD_VERSION, null)
60+
fDroidVersionCode = properties.getProperty(PROP_FDROID_BUILD_VERCODE, null)?.toInt()
61+
}
62+
}

build-logic/ide/src/main/java/ProjectConfig.kt

+6-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@ private var shouldPrintVersionName = true
3838
* Whether this build is being executed in the F-Droid build server.
3939
*/
4040
val Project.isFDroidBuild: Boolean
41-
get() = hasProperty(PROP_IDE_BUILD_FDROID) && property(PROP_IDE_BUILD_FDROID) == "true"
41+
get() {
42+
if (!FDroidConfig.hasRead) {
43+
FDroidConfig.load(this)
44+
}
45+
return FDroidConfig.isFDroidBuild
46+
}
4247

4348
val Project.simpleVersionName: String
4449
get() {

build-logic/ide/src/main/java/com/itsaky/androidide/plugins/conf/AndroidModuleConf.kt

+6-13
Original file line numberDiff line numberDiff line change
@@ -78,19 +78,12 @@ fun Project.configureAndroidModule(
7878
"\"${abi}\"")
7979
}
8080

81-
// Do not configure flavorDimensions here when building with F-Droid
82-
// flavor dimensions for F-Droid builds are configured in <root>/scripts/setup_fdroid_build.sh
83-
//
84-
// IMPORTANT: When changing the configuration here, make sure to update the following file:
85-
// - <root>/scripts/setup_fdroid_build.sh
86-
if (!isFDroidBuild) {
87-
88-
productFlavors {
89-
flavorsAbis.forEach { (abi, verCodeIncrement) ->
90-
val flavor = create(abi)
91-
flavor.versionNameSuffix = "-${abi}"
92-
flavor.versionCode = 100 * projectVersionCode + verCodeIncrement
93-
}
81+
productFlavors {
82+
val fdroidSuffix = if (isFDroidBuild) "-fdroid" else ""
83+
flavorsAbis.forEach { (abi, verCodeIncrement) ->
84+
val flavor = create(abi)
85+
flavor.versionNameSuffix = "-${abi}${fdroidSuffix}"
86+
flavor.versionCode = 100 * projectVersionCode + verCodeIncrement
9487
}
9588
}
9689
} else {

build.gradle.kts

+7-4
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@
1818
@file:Suppress("UnstableApiUsage")
1919

2020
import com.itsaky.androidide.plugins.AndroidIDEPlugin
21-
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2221
import com.itsaky.androidide.plugins.conf.configureAndroidModule
2322
import com.itsaky.androidide.plugins.conf.configureJavaModule
2423
import com.itsaky.androidide.plugins.conf.configureMavenPublish
24+
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2525

26-
@Suppress("DSL_SCOPE_VIOLATION")
2726
plugins {
2827
id("build-logic.root-project")
2928
alias(libs.plugins.android.application) apply false
@@ -49,8 +48,12 @@ subprojects {
4948
project.group = BuildConfig.packageName
5049
project.version = rootProject.version
5150

52-
plugins.withId("com.android.application") { configureAndroidModule(libs.androidx.lib.desugaring.get()) }
53-
plugins.withId("com.android.library") { configureAndroidModule(libs.androidx.lib.desugaring.get()) }
51+
plugins.withId("com.android.application") {
52+
configureAndroidModule(libs.androidx.lib.desugaring.get())
53+
}
54+
plugins.withId("com.android.library") {
55+
configureAndroidModule(libs.androidx.lib.desugaring.get())
56+
}
5457
plugins.withId("java-library") { configureJavaModule() }
5558
plugins.withId("com.vanniktech.maven.publish.base") { configureMavenPublish() }
5659

scripts/setup_fdroid_build.sh

-109
This file was deleted.

settings.gradle.kts

+54-13
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,24 @@ pluginManagement {
1111
}
1212
}
1313

14-
// DO NOT REMOVE THESE COMMENTS!
15-
// @@FDROID_PREBUILD_SETTINGS_REPLACE_BEGIN@@
16-
plugins {
17-
id("com.mooltiverse.oss.nyx") version "2.5.1"
14+
buildscript {
15+
repositories {
16+
mavenCentral()
17+
}
18+
dependencies {
19+
classpath("com.mooltiverse.oss.nyx:gradle:2.5.1")
20+
}
1821
}
1922

20-
// DO NOT REPLACE WITH IMPORT!!
21-
extensions.configure<com.mooltiverse.oss.nyx.gradle.NyxExtension> {
22-
git {
23-
remotes.register("origin") {
24-
user.set("{{#environmentVariable}}GH_TOKEN{{/environmentVariable}}")
25-
password.set("")
26-
}
23+
FDroidConfig.load(rootDir)
24+
25+
if (FDroidConfig.hasRead && FDroidConfig.isFDroidBuild) {
26+
gradle.rootProject { project.setProperty("version", FDroidConfig.fDroidVersionName!!) }
27+
} else {
28+
apply {
29+
plugin("com.mooltiverse.oss.nyx")
2730
}
28-
configurationFile.set(".nyx.yml")
2931
}
30-
// @@FDROID_PREBUILD_SETTINGS_REPLACE_END@@
3132

3233
dependencyResolutionManagement {
3334
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
@@ -108,3 +109,43 @@ include(
108109
":testing:tooling",
109110
":testing:unit",
110111
)
112+
113+
object FDroidConfig {
114+
115+
var hasRead: Boolean = false
116+
private set
117+
118+
var isFDroidBuild: Boolean = false
119+
private set
120+
121+
var fDroidVersionName: String? = null
122+
private set
123+
124+
var fDroidVersionCode: Int? = null
125+
private set
126+
127+
const val PROP_FDROID_BUILD = "ide.build.fdroid"
128+
const val PROP_FDROID_BUILD_VERSION = "ide.build.fdroid.version"
129+
const val PROP_FDROID_BUILD_VERCODE = "ide.build.fdroid.vercode"
130+
131+
fun load(rootDir: File) {
132+
val propsFile = File(rootDir, "fdroid.properties")
133+
if (!propsFile.exists() || !propsFile.isFile) {
134+
hasRead = true
135+
isFDroidBuild = false
136+
return
137+
}
138+
139+
val properties = propsFile.let { props ->
140+
java.util.Properties().also {
141+
it.load(props.reader())
142+
}
143+
}
144+
145+
hasRead = true
146+
isFDroidBuild = properties.getProperty(PROP_FDROID_BUILD, null).toBoolean()
147+
148+
fDroidVersionName = properties.getProperty(PROP_FDROID_BUILD_VERSION, null)
149+
fDroidVersionCode = properties.getProperty(PROP_FDROID_BUILD_VERCODE, null)?.toInt()
150+
}
151+
}

0 commit comments

Comments
 (0)