| apply plugin: 'com.android.application' |
| |
| android { |
| compileSdkVersion 21 |
| buildToolsVersion "29.0.2" |
| defaultConfig { |
| applicationId "org.rivoreo.sshout" |
| minSdkVersion 15 |
| targetSdkVersion 21 |
| versionCode 1 |
| versionName "1.0" |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| } |
| productFlavors {} |
| } |
| |
| dependencies { |
| // Oh, I known it! |
| // I must previously put this .jar file into the 'libs' dir, but it didn't included in git repo |
| |
| compile fileTree(dir: 'libs', include: ['*.jar']) |
| compile 'com.android.support:support-v4:22.0.0' |
| // https://mvnrepository.com/artifact/com.jcraft/jsch |
| //compile group: 'com.jcraft', name: 'jsch', version: '0.1.55' |
| |
| } |
| |
| buildscript { |
| repositories { |
| jcenter() |
| } |
| dependencies { |
| classpath 'com.android.tools.build:gradle:2.2.1' |
| } |
| } |
| |