Skip to content

Commit

Permalink
Closes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Aldo Borrero González committed May 22, 2018
1 parent 0acd1ec commit 7de6de1
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 64 deletions.
33 changes: 15 additions & 18 deletions app/build.gradle
@@ -1,27 +1,24 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion '25'
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
applicationId "com.bugfender.sample"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
}
defaultConfig {
applicationId "com.bugfender.sample"
minSdkVersion 14
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'

compile 'com.bugfender.sdk:android:1.+'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.bugfender.sdk:android:1.0.7'
}
14 changes: 0 additions & 14 deletions app/src/androidTest/java/com/bugfender/sample/ApplicationTest.java

This file was deleted.

15 changes: 0 additions & 15 deletions app/src/test/java/com/bugfender/sample/ExampleUnitTest.java

This file was deleted.

28 changes: 13 additions & 15 deletions build.gradle
@@ -1,23 +1,21 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
}
}

allprojects {
repositories {
jcenter()
}
repositories {
jcenter()
google()
mavenCentral()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
delete rootProject.buildDir
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Wed Dec 21 12:42:16 CET 2016
#Tue May 22 12:51:55 CEST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

0 comments on commit 7de6de1

Please sign in to comment.