mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-04-20 03:24:50 +00:00
222 lines
7.3 KiB
Groovy
222 lines
7.3 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.21'
|
|
id 'org.ajoberstar.grgit' version '1.7.2'
|
|
id 'com.google.protobuf'
|
|
id 'kotlin-parcelize'
|
|
id 'com.google.devtools.ksp'
|
|
}
|
|
|
|
ext {
|
|
gitVersionName = grgit.describe()
|
|
gitVersionCode = gitVersionName != null && gitVersionName.isInteger() ? gitVersionName.toInteger() : 1
|
|
}
|
|
|
|
println("Version Name: $gitVersionName")
|
|
println("Version Code: $gitVersionCode")
|
|
|
|
def keystoreProperties = new Properties()
|
|
def keystorePropertiesFile = rootProject.file('/opt/key.properties')
|
|
if (keystorePropertiesFile.exists()) {
|
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
|
}
|
|
|
|
protobuf {
|
|
protoc {
|
|
artifact = 'com.google.protobuf:protoc:3.25.1'
|
|
}
|
|
generateProtoTasks {
|
|
all().each { task ->
|
|
task.builtins {
|
|
java {
|
|
option "lite"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace 'com.futo.platformplayer'
|
|
compileSdk 34
|
|
flavorDimensions "buildType"
|
|
productFlavors {
|
|
stable {
|
|
dimension "buildType"
|
|
applicationId "com.futo.platformplayer"
|
|
buildConfigField "boolean", "IS_UNSTABLE_BUILD", "false"
|
|
buildConfigField "boolean", "IS_PLAYSTORE_BUILD", "false"
|
|
resValue "string", "app_name", "Grayjay"
|
|
resValue "string", "authority", "com.futo.platformplayer"
|
|
}
|
|
unstable {
|
|
dimension "buildType"
|
|
applicationId "com.futo.platformplayer.d"
|
|
buildConfigField "boolean", "IS_UNSTABLE_BUILD", "true"
|
|
buildConfigField "boolean", "IS_PLAYSTORE_BUILD", "false"
|
|
resValue "string", "app_name", "Grayjay Unstable"
|
|
resValue "string", "authority", "com.futo.platformplayer.d"
|
|
getIsDefault().set(true)
|
|
}
|
|
playstore {
|
|
dimension "buildType"
|
|
applicationId "com.futo.platformplayer.playstore"
|
|
buildConfigField "boolean", "IS_UNSTABLE_BUILD", "false"
|
|
buildConfigField "boolean", "IS_PLAYSTORE_BUILD", "true"
|
|
resValue "string", "app_name", "Grayjay"
|
|
resValue "string", "authority", "com.futo.platformplayer.playstore"
|
|
}
|
|
}
|
|
|
|
android.applicationVariants.all { variant ->
|
|
if (variant.flavorName == "unstable") {
|
|
variant.preBuildProvider.configure {
|
|
doFirst {
|
|
println("UNSTABLE BUILD")
|
|
}
|
|
}
|
|
}
|
|
|
|
if (variant.flavorName == "stable") {
|
|
variant.preBuildProvider.configure {
|
|
doFirst {
|
|
println("STABLE BUILD")
|
|
}
|
|
}
|
|
}
|
|
|
|
if (variant.flavorName == "playstore") {
|
|
variant.preBuildProvider.configure {
|
|
doFirst {
|
|
println("PLAYSTORE BUILD")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdk 28
|
|
targetSdk 34
|
|
versionCode gitVersionCode
|
|
versionName gitVersionName
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
ksp {
|
|
arg("room.schemaLocation", "$projectDir/schemas")
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
keyAlias keystoreProperties['keyAlias']
|
|
keyPassword keystoreProperties['keyPassword']
|
|
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
|
storePassword keystoreProperties['storePassword']
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
signingConfig signingConfigs.release
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
|
|
splits {
|
|
abi {
|
|
enable true
|
|
reset()
|
|
|
|
include "x86", "x86_64", "arm64-v8a", "armeabi-v7a"
|
|
universalApk true
|
|
}
|
|
}
|
|
buildFeatures {
|
|
buildConfig true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
//Core
|
|
implementation 'androidx.core:core-ktx:1.12.0'
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.11.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
//Images
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.16.0'
|
|
implementation 'com.github.bumptech.glide:glide:4.16.0'
|
|
|
|
//Async
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3"
|
|
|
|
//HTTP
|
|
implementation "com.squareup.okhttp3:okhttp:4.11.0"
|
|
|
|
//JSON
|
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2" //Used for structured json
|
|
implementation 'com.google.code.gson:gson:2.10.1' //Used for complex/anonymous cases like during development conversions (eg. V8RemoteObject)
|
|
|
|
//JS
|
|
implementation("com.caoccao.javet:javet-android:3.0.2")
|
|
|
|
//Exoplayer
|
|
implementation 'androidx.media3:media3-exoplayer:1.2.1'
|
|
implementation 'androidx.media3:media3-exoplayer-dash:1.2.1'
|
|
implementation 'androidx.media3:media3-ui:1.2.1'
|
|
implementation 'androidx.media3:media3-exoplayer-hls:1.2.1'
|
|
implementation 'androidx.media3:media3-exoplayer-rtsp:1.2.1'
|
|
implementation 'androidx.media3:media3-exoplayer-smoothstreaming:1.2.1'
|
|
implementation 'androidx.media3:media3-transformer:1.2.1'
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.6'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.7.6'
|
|
implementation 'androidx.media:media:1.7.0'
|
|
|
|
//Other
|
|
implementation 'org.jmdns:jmdns:3.5.1'
|
|
implementation 'org.jsoup:jsoup:1.15.3'
|
|
implementation 'com.google.android.flexbox:flexbox:3.0.0'
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
implementation 'com.arthenica:ffmpeg-kit-full:5.1'
|
|
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.9.0'
|
|
implementation 'com.github.dhaval2404:imagepicker:2.1'
|
|
implementation 'com.google.zxing:core:3.4.1'
|
|
implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
|
|
implementation 'com.caverock:androidsvg-aar:1.4'
|
|
|
|
//Protobuf
|
|
implementation 'com.google.protobuf:protobuf-javalite:3.25.1'
|
|
|
|
implementation 'com.polycentric.core:app:1.0'
|
|
implementation 'com.futo.futopay:app:1.0'
|
|
implementation 'androidx.work:work-runtime-ktx:2.9.0'
|
|
implementation 'androidx.concurrent:concurrent-futures-ktx:1.1.0'
|
|
|
|
//Database
|
|
implementation("androidx.room:room-runtime:2.6.1")
|
|
annotationProcessor("androidx.room:room-compiler:2.6.1")
|
|
ksp("androidx.room:room-compiler:2.6.1")
|
|
implementation("androidx.room:room-ktx:2.6.1")
|
|
|
|
//Payment
|
|
implementation 'com.stripe:stripe-android:20.35.1'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3'
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test:1.8.22"
|
|
testImplementation "org.xmlunit:xmlunit-core:2.9.1"
|
|
testImplementation "org.mockito:mockito-core:5.4.0"
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
}
|