You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
2 days ago
|
ext {
|
||
|
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
|
||
|
cordovaAndroidVersion = project.hasProperty('cordovaAndroidVersion') ? rootProject.ext.cordovaAndroidVersion : '10.1.1'
|
||
|
}
|
||
|
|
||
|
buildscript {
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:8.2.1'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
namespace "capacitor.cordova.android.plugins"
|
||
|
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"
|
||
|
}
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_17
|
||
|
targetCompatibility JavaVersion.VERSION_17
|
||
|
}
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
flatDir{
|
||
|
dirs 'src/main/libs', 'libs'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'src/main/libs', include: ['*.jar'])
|
||
|
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
||
|
implementation "org.apache.cordova:framework:$cordovaAndroidVersion"
|
||
|
// SUB-PROJECT DEPENDENCIES START
|
||
|
|
||
|
// SUB-PROJECT DEPENDENCIES END
|
||
|
}
|
||
|
|
||
|
// PLUGIN GRADLE EXTENSIONS START
|
||
|
apply from: "cordova.variables.gradle"
|
||
|
// PLUGIN GRADLE EXTENSIONS END
|
||
|
|
||
|
for (def func : cdvPluginPostBuildExtras) {
|
||
|
func()
|
||
|
}
|