Skip to content

Commit

Permalink
Merge pull request #16 from Nublo/develop
Browse files Browse the repository at this point in the history
Removed dependency from appcompat library.
  • Loading branch information
Nublo authored Dec 21, 2016
2 parents 29cb3c1 + a944847 commit 7ac4bf0
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ HallScheme is a lightweight simple library for creating rectangle halls.

```groovy
dependencies {
compile 'com.github.Nublo:hallscheme:1.1.0'
compile 'com.github.Nublo:hallscheme:1.1.1'
}
```

Expand Down Expand Up @@ -253,6 +253,10 @@ Image is currently drawing on standart `Bitmap`. Maximum size of `Bitmap` depend

### ChangeLog

**Version 1.1.1:**

+ Remove dependency from appcompat library

**Version 1.1.0:**

+ Ability to set custom typeface
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
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
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=1.1.0
VERSION_CODE=2
VERSION_NAME=1.1.1
VERSION_CODE=3
GROUP=com.github.Nublo

POM_DESCRIPTION=Simple Library for creating rectangle halls
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-all.zip
8 changes: 4 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.1"

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0.0"
}
Expand All @@ -20,5 +20,5 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:23.1.1'

}
8 changes: 4 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.1"

defaultConfig {
applicationId "by.anatoldeveloper.hallscheme.example"
minSdkVersion 14
targetSdkVersion 23
targetSdkVersion 25
versionCode 2
versionName "1.1.0"
}
Expand All @@ -20,6 +20,6 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:appcompat-v7:25.0.1'
compile project(':library')
}

0 comments on commit 7ac4bf0

Please sign in to comment.