Skip to content

Commit

Permalink
refactoring, removed obsolete pieces
Browse files Browse the repository at this point in the history
  • Loading branch information
livotov committed May 16, 2016
1 parent 72584e2 commit 6a1ca34
Show file tree
Hide file tree
Showing 187 changed files with 189 additions and 11,209 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
RoboTools V3
===

RoboTools is a micro framework and toolset library for Android apps, aimed to make every day apps
development easier and faster by automating most common routines we need to implement in every app.
RoboTools is a micro library for Android apps, with the set of utility classes


Current version numbers
Expand Down Expand Up @@ -31,7 +30,7 @@ Installation
The library is available in jCenter / BinTray:

``
compile 'eu.livotov.labs.android:RoboToolsLibrary:3.0.0-dev15'
compile 'eu.livotov.labs.android:RoboToolsLibrary:3.0.1'
``


Expand Down
28 changes: 20 additions & 8 deletions RoboToolsLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.android.tools.build:gradle:2.1.0'
}
}
apply plugin: 'com.android.library'
Expand All @@ -13,21 +13,33 @@ repositories {
}

android {
compileSdkVersion 23
buildToolsVersion "21.1.2"
compileSdkVersion androidCompileSdkVersion
buildToolsVersion androidBuildToolsVersion

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
minSdkVersion androidMinSdkVersion
targetSdkVersion androidTargetSdkVersion
}

}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.4.0'

/**
* Support library
*/
compile supportLibs.annotation
compile supportLibs.appCompat

/**
* Play Services
*/
compile playServicesLibs.base

/**
* Other deps
*/
compile 'com.google.code.gson:gson:2.4'
}

Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 6a1ca34

Please sign in to comment.