2024-02-23 15:29:55 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'com.example.onetap_ssh'
|
2024-02-23 17:44:39 +01:00
|
|
|
compileSdk 34
|
2024-02-23 15:29:55 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.example.onetap_ssh"
|
|
|
|
minSdk 21
|
|
|
|
targetSdk 33
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'com.google.android.material:material:1.10.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.2'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2'
|
|
|
|
implementation 'androidx.navigation:navigation-fragment:2.7.5'
|
|
|
|
implementation 'androidx.navigation:navigation-ui:2.7.5'
|
2024-02-23 17:44:39 +01:00
|
|
|
implementation "androidx.biometric:biometric:1.1.0"
|
|
|
|
implementation 'androidx.activity:activity:1.8.0'
|
|
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
|
|
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
|
|
|
|
implementation 'com.caverock:androidsvg-aar:1.4'
|
2024-02-23 15:29:55 +01:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2024-02-24 19:59:28 +01:00
|
|
|
implementation 'com.jcraft:jsch:0.1.55'
|
2024-02-23 15:29:55 +01:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
|
|
}
|