1234567891011121314151617181920212223242526 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 27
- buildToolsVersion "27.0.3"
- defaultConfig {
- applicationId "com.mikhaellopez.androidwebserver"
- minSdkVersion 20
- targetSdkVersion 27
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation 'org.nanohttpd:nanohttpd:2.2.0'
- implementation 'com.android.support:appcompat-v7:27.1.1'
- implementation 'com.android.support:design:27.1.1'
- }
|