build.gradle 841 Bytes
group 'com.artxdev.apk_installer'
version '1.0'

buildscript {
    repositories {
        google()
        jcenter()
    }

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

rootProject.allprojects {
    repositories {
        google()
        jcenter()
        // Comment this if you're building Release, this is for Android Studio indexing
        // maven { url 'http://download.flutter.io' }
    }
}

apply plugin: 'com.android.library'

android {
    compileSdkVersion 31

    defaultConfig {
        minSdkVersion 21
    }

    dependencies {
        // Comment this if you're building Release, this is for Android Studio indexing
        // api "io.flutter:flutter_embedding_debug:1.0.0-d4453f601890ec682bbf8f5659b70f15cce1d67d"
        implementation 'org.apache.commons:commons-io:1.3.2'
    }
}