android_terminal/build.gradle
Martin Valba ee6dc6485f Ready for basic NetHunter usage
* Can take intents without permissions from nhapp ( both apps need to besigned with same key for shareduserid usage )
* Terminal now uses chroot env as default session ( also has system session in menu for system shell usage )
* Disabled setup on start and added static bash + kali script for terminal to use ( uses it to start kali chroot env on start )
    * these 2 are extarcted on app start for new users
* And more changes to session environment to make sessions have proper env flags/exports
* possibly more little things that i forgot to mention
2022-12-28 12:53:43 +02:00

55 lines
1.7 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.32'
ext.android = [
KOTLIN_VERSION : '1.4.32',
MIN_SDK_VERSION : 26,
COMPILE_SDK_VERSION: 30,
TARGET_SDK_VERSION : 30,
JUNIT_VERSION : "4.12"
]
ext.deps = [
"annotations" : "androidx.annotation:annotation:1.0.0",
"appcompat-v7" : "androidx.appcompat:appcompat:1.0.0",
"design" : "com.android.support:design:${ext.android.ANDROID_SUPPORT_VERSION}",
"cardview-v7" : "com.android.support:cardview-v7:${ext.android.ANDROID_SUPPORT_VERSION}",
"kotlin-stdlib" : "org.jetbrains.kotlin:kotlin-stdlib:${ext.android.KOTLIN_VERSION}",
"kotlin-gradle-plugin": "org.jetbrains.kotlin:kotlin-gradle-plugin:${ext.android.KOTLIN_VERSION}",
"junit" : "junit:junit:${ext.android.JUNIT_VERSION}"
]
repositories {
maven { url 'https://dl.google.com/dl/android/maven2/' }
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath rootProject.ext.deps["kotlin-gradle-plugin"]
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://dl.google.com/dl/android/maven2/' }
mavenCentral()
maven { url "https://jitpack.io" }
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}