All checks were successful
/ build_android (push) Successful in 3m52s
96 lines
4.1 KiB
Groovy
96 lines
4.1 KiB
Groovy
ext {
|
|
androidxActivityVersion = project.hasProperty('androidxActivityVersion') ? rootProject.ext.androidxActivityVersion : '1.8.0'
|
|
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
|
|
androidxCoordinatorLayoutVersion = project.hasProperty('androidxCoordinatorLayoutVersion') ? rootProject.ext.androidxCoordinatorLayoutVersion : '1.2.0'
|
|
androidxCoreVersion = project.hasProperty('androidxCoreVersion') ? rootProject.ext.androidxCoreVersion : '1.12.0'
|
|
androidxFragmentVersion = project.hasProperty('androidxFragmentVersion') ? rootProject.ext.androidxFragmentVersion : '1.6.2'
|
|
androidxWebkitVersion = project.hasProperty('androidxWebkitVersion') ? rootProject.ext.androidxWebkitVersion : '1.9.0'
|
|
junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
|
|
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
|
|
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
|
|
cordovaAndroidVersion = project.hasProperty('cordovaAndroidVersion') ? rootProject.ext.cordovaAndroidVersion : '10.1.1'
|
|
}
|
|
|
|
|
|
buildscript {
|
|
ext.kotlin_version = project.hasProperty("kotlin_version") ? rootProject.ext.kotlin_version : '1.9.10'
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.2.1'
|
|
|
|
if (System.getenv("CAP_PUBLISH") == "true") {
|
|
classpath 'io.github.gradle-nexus:publish-plugin:1.3.0'
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.withType(Javadoc).all { enabled = false }
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
if (System.getenv("CAP_PUBLISH") == "true") {
|
|
apply plugin: 'io.github.gradle-nexus.publish-plugin'
|
|
apply from: file('../scripts/publish-root.gradle')
|
|
apply from: file('../scripts/publish-module.gradle')
|
|
}
|
|
|
|
android {
|
|
namespace "com.getcapacitor.android"
|
|
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34
|
|
defaultConfig {
|
|
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
|
|
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
consumerProguardFiles 'proguard-rules.pro'
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
baseline file("lint-baseline.xml")
|
|
abortOnError true
|
|
warningsAsErrors true
|
|
lintConfig file('lint.xml')
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
publishing {
|
|
singleVariant("release")
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation platform("org.jetbrains.kotlin:kotlin-bom:$kotlin_version")
|
|
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
|
implementation "androidx.core:core:$androidxCoreVersion"
|
|
implementation "androidx.activity:activity:$androidxActivityVersion"
|
|
implementation "androidx.fragment:fragment:$androidxFragmentVersion"
|
|
implementation "androidx.coordinatorlayout:coordinatorlayout:$androidxCoordinatorLayoutVersion"
|
|
implementation "androidx.webkit:webkit:$androidxWebkitVersion"
|
|
testImplementation "junit:junit:$junitVersion"
|
|
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
|
|
implementation "org.apache.cordova:framework:$cordovaAndroidVersion"
|
|
testImplementation 'org.json:json:20231013'
|
|
testImplementation 'org.mockito:mockito-inline:5.2.0'
|
|
}
|
|
|