Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

build.gradle 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* Licensed to the Apache Software Foundation (ASF) under one
  2. or more contributor license agreements. See the NOTICE file
  3. distributed with this work for additional information
  4. regarding copyright ownership. The ASF licenses this file
  5. to you under the Apache License, Version 2.0 (the
  6. "License"); you may not use this file except in compliance
  7. with the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing,
  10. software distributed under the License is distributed on an
  11. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  12. KIND, either express or implied. See the License for the
  13. specific language governing permissions and limitations
  14. under the License.
  15. */
  16. apply plugin: 'com.android.application'
  17. android {
  18. compileSdkVersion 28
  19. buildToolsVersion "28.0.3"
  20. defaultConfig {
  21. applicationId "org.apache.cordova.unittests"
  22. minSdkVersion 19
  23. targetSdkVersion 28
  24. versionCode 1
  25. versionName "1.0"
  26. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  27. }
  28. buildTypes {
  29. release {
  30. minifyEnabled false
  31. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  32. }
  33. }
  34. }
  35. dependencies {
  36. implementation fileTree(include: ['*.jar'], dir: 'libs')
  37. implementation project(path: ':CordovaLib')
  38. androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
  39. exclude group: 'com.android.support', module: 'support-annotations'
  40. })
  41. androidTestImplementation('com.android.support.test.espresso:espresso-web:2.2.2', {
  42. exclude group: 'com.android.support', module: 'support-annotations'
  43. })
  44. implementation 'com.android.support:appcompat-v7:26.1.0'
  45. testImplementation 'junit:junit:4.12'
  46. testImplementation 'org.json:json:20140107'
  47. }