mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-24 18:02:20 +00:00
While some of the changes are due to syntax and have no effect on the functionality, others are more important. The major changes are - Use Painter instead of now removed DeprecatedPainter - Remove the need of LibArchive by using Java's native zip support - Have a proper C++23 compiler by updating NDK to r29 beta 2 - Store user data and config in an user accessible way - Update AGP to 8.11 and update compile target to SDK level 35
96 lines
3 KiB
Kotlin
96 lines
3 KiB
Kotlin
import com.android.build.gradle.internal.tasks.factory.dependsOn
|
|
|
|
plugins {
|
|
id("com.android.application") version "8.11.0"
|
|
id("org.jetbrains.kotlin.android") version "2.1.20"
|
|
}
|
|
|
|
var buildDir = layout.buildDirectory.get()
|
|
var cacheDir = System.getenv("LADYBIRD_CACHE_DIR") ?: "$buildDir/caches"
|
|
var sourceDir = layout.projectDirectory.dir("../../").toString()
|
|
|
|
task<Exec>("buildLagomTools") {
|
|
commandLine = listOf("./BuildLagomTools.sh")
|
|
environment = mapOf(
|
|
"BUILD_DIR" to buildDir,
|
|
"CACHE_DIR" to cacheDir,
|
|
"PATH" to System.getenv("PATH")!!
|
|
)
|
|
}
|
|
tasks.named("preBuild").dependsOn("buildLagomTools")
|
|
tasks.named("prepareKotlinBuildScriptModel").dependsOn("buildLagomTools")
|
|
|
|
android {
|
|
namespace = "org.serenityos.ladybird"
|
|
compileSdk = 35
|
|
// FIXME: Replace the NDK version to a stable one (this is r29 beta 2)
|
|
ndkVersion = "29.0.13599879"
|
|
|
|
defaultConfig {
|
|
applicationId = "org.serenityos.ladybird"
|
|
minSdk = 30
|
|
targetSdk = 35
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
externalNativeBuild {
|
|
cmake {
|
|
cppFlags += "-std=c++23"
|
|
arguments += listOf(
|
|
"-DLagomTools_DIR=$buildDir/lagom-tools-install/share/LagomTools",
|
|
"-DANDROID_STL=c++_shared",
|
|
"-DLADYBIRD_CACHE_DIR=$cacheDir",
|
|
"-DVCPKG_ROOT=$sourceDir/Build/vcpkg",
|
|
"-DVCPKG_TARGET_ANDROID=ON"
|
|
)
|
|
}
|
|
}
|
|
ndk {
|
|
// Specifies the ABI configurations of your native
|
|
// libraries Gradle should build and package with your app.
|
|
abiFilters += listOf("x86_64", "arm64-v8a")
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "11"
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path = file("../../CMakeLists.txt")
|
|
version = "3.23.0+"
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding = true
|
|
prefab = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("androidx.core:core-ktx:1.13.1")
|
|
implementation("androidx.appcompat:appcompat:1.6.1")
|
|
implementation("com.google.android.material:material:1.12.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.ext:junit-ktx:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
implementation("com.google.oboe:oboe:1.9.3")
|
|
}
|