You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 19
  4. buildToolsVersion "21.1.2"
  5. defaultConfig {
  6. applicationId "com.rob57530.smsserver"
  7. minSdkVersion 8
  8. targetSdkVersion 19
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  14. }
  15. }
  16. }
  17. dependencies {
  18. compile 'com.android.support:support-v4:19.1.0'
  19. compile files('libs/jetty-continuation-8.1.12.v20130726.jar')
  20. compile files('libs/jetty-http-8.1.12.v20130726.jar')
  21. compile files('libs/jetty-io-8.1.12.v20130726.jar')
  22. compile files('libs/jetty-server-8.1.12.v20130726.jar')
  23. compile files('libs/jetty-util-8.1.12.v20130726.jar')
  24. compile files('libs/servlet-api-3.0.jar')
  25. }