| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- plugins {
- id 'com.android.library'
- id 'org.jetbrains.kotlin.android'
- id 'maven-publish'
- }
- ext {
- GROUP_ID = 'com.wenext.android'
- ARTIFACT_ID = 'frame-share'
- VERSION = '6.0.3'
- }
- apply from: "../../publish.gradle"
- android {
- namespace 'com.adealink.frame.share'
- compileSdk libs.versions.compileSdk.get().toInteger()
- defaultConfig {
- minSdk libs.versions.minSdk.get().toInteger()
- targetSdk libs.versions.targetSdk.get().toInteger()
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
- kotlinOptions {
- jvmTarget = JavaVersion.VERSION_17.majorVersion
- }
- viewBinding {
- enabled = true
- }
- }
- dependencies {
- //kotlin
- implementation libs.kotlin.stdlib
- //androidx
- implementation libs.androidx.core.ktx
- implementation libs.androidx.appcompat
- //android
- implementation libs.android.material
- //facebook
- implementation libs.facebook.share
- //firebase
- implementation platform(libs.firebase.bom)
- implementation libs.firebase.dynamic.link
- //AppFlyer
- implementation libs.appsflyer
- //google play core
- implementation libs.play.feature.delivery
- //gson
- compileOnly libs.gson
- //frame
- compileOnly project(":frame:zero")
- compileOnly project(":frame:base")
- compileOnly project(":frame:data")
- compileOnly project(":frame:coroutine")
- compileOnly project(":frame:util")
- compileOnly project(":frame:statistics")
- compileOnly project(":frame:image")
- compileOnly project(":frame:mvvm")
- compileOnly project(":frame:network")
- compileOnly project(":frame:log")
- compileOnly project(":frame:storage")
- compileOnly project(":frame:download")
- //test
- testImplementation libs.junit
- androidTestImplementation libs.androidx.junit
- androidTestImplementation libs.androidx.espresso.core
- }
|