Skip to content

Commit

Permalink
gradle wrapper restored
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacek Kwiecień committed Jun 8, 2015
1 parent 8d00110 commit ec71f5f
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 27 deletions.
98 changes: 74 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,82 @@
# defaults
.gradle
/local.properties
/.idea/workspace.xml
.DS_Store
*/build
*/build/*
build/*
*/intermediates
/gradle


# IntelliJ IDEA
.idea
# Created by https://www.gitignore.io

### Android ###
# Built application files
*.apk
*.ap_

# Files for the Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/

# Gradle files
.gradle/
build/
/*/build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

### Android Patch ###
gen-external-apklibs


### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm

*.iml

## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:

# User-specific stuff:
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries

# Sensitive or high-churn files:
# .idea/dataSources.ids
# .idea/dataSources.xml
# .idea/sqlDataSources.xml
# .idea/dynamic.xml
# .idea/uiDesigner.xml

# Gradle:
# .idea/gradle.xml
# .idea/libraries

# Mongo Explorer plugin:
# .idea/mongoSettings.xml

## File-based project format:
*.ipr
*.iws
classes
gen-external-apklibs
*.apk
*.iml
/*.iml
app/app.iml
# Other
*.keystore

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

#Crashalytics
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics-build.properties
crashlytics.properties
crashlytics-build.properties
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 6 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Wed Apr 10 15:27:10 PDT 2013
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'android-maven'

android {
compileSdkVersion 22
Expand All @@ -8,8 +8,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
versionCode 4
versionName "1.0.4"
versionCode 6
versionName "1.0.6"
}
buildTypes {
release {
Expand Down

0 comments on commit ec71f5f

Please sign in to comment.