apply plugin: 'com.android.library'

buildscript {
    repositories {
        google()
        jcenter()
        maven { url 'https://developer.huawei.com/repo/' }
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.0'
    }
}

repositories {
    google()
    jcenter()
    maven { url 'https://developer.huawei.com/repo/' }
}

android {
    compileSdkVersion 33
    buildToolsVersion '31.0.0'

    defaultConfig {
        minSdkVersion 19
        targetSdkVersion 33
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation 'com.facebook.fresco:fresco:3.1.3'
    implementation 'org.apache.cordova:framework:8.1.0'
    implementation 'com.huawei.hms:push:6.12.0.300'
    implementation 'androidx.core:core:1.3.0'
}
