1
0
Fork 0
mirror of https://github.com/ethauvin/kotlin-pluralizer.git synced 2025-04-25 08:47:12 -07:00

lowered gradle version

This commit is contained in:
Cesar Ferreira 2016-09-04 21:21:44 +01:00
parent 3be60a76a8
commit 5b4cd994ec
4 changed files with 2 additions and 6 deletions

View file

@ -16,7 +16,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.2.0-rc1' classpath 'com.android.tools.build:gradle:2.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
} }
} }

View file

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.0-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

View file

@ -10,7 +10,6 @@ buildscript {
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply plugin: 'com.github.dcendents.android-maven'
android { android {
compileSdkVersion 24 compileSdkVersion 24
@ -40,8 +39,6 @@ android {
} }
dependencies { dependencies {
compile gradleApi()
compile 'com.android.support:appcompat-v7:24.2.0'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
} }
repositories { repositories {

View file

@ -22,7 +22,6 @@ class HelloActivity : AppCompatActivity() {
Log.d("TAG", "person".pluralize()) Log.d("TAG", "person".pluralize())
Log.d("TAG", "banana".pluralize()) Log.d("TAG", "banana".pluralize())
Log.d("TAG", "woman".pluralize()) Log.d("TAG", "woman".pluralize())
Log.d("TAG", "women".singularize()) Log.d("TAG", "women".singularize())
}) })