This repository was archived by the owner on Aug 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
62 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ gen | |
build/ | ||
.idea/ | ||
*.orig | ||
*.asc | ||
|
||
.gradle/ | ||
*.iml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,67 @@ | ||
apply plugin: 'com.android.library' | ||
|
||
android { | ||
compileSdkVersion 21 | ||
buildToolsVersion "21.0.2" | ||
|
||
defaultConfig { | ||
minSdkVersion 14 | ||
targetSdkVersion 21 | ||
versionName project.VERSION_NAME | ||
versionCode Integer.parseInt(project.VERSION_CODE) | ||
consumerProguardFiles 'consumer-proguard-rules.pro' | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
compileSdkVersion 22 | ||
buildToolsVersion "22.0.1" | ||
|
||
defaultConfig { | ||
minSdkVersion 9 | ||
targetSdkVersion 22 | ||
versionName project.VERSION_NAME | ||
versionCode Integer.parseInt(project.VERSION_CODE) | ||
consumerProguardFiles 'consumer-proguard-rules.pro' | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
ext { | ||
bintrayRepo = 'maven' | ||
bintrayName = 'simple-fb' | ||
|
||
publishedGroupId = 'com.sromku' | ||
libraryName = 'Simple Facebook SDK' | ||
artifact = 'simple-fb' | ||
|
||
libraryDescription = 'Simple Facebook SDK for Android which wraps original Facebook SDK. This is a library project which makes the life much easier by coding less code for being able to login, publish feeds and open graph stories, call graph api, invite friends and more.' | ||
|
||
siteUrl = 'https://github.com/sromku/android-simple-facebook' | ||
gitUrl = 'https://github.com/sromku/android-simple-facebook.git' | ||
|
||
libraryVersion = '4.0.0' | ||
|
||
developerId = 'sromku' | ||
developerName = 'Roman Kushnarenko' | ||
developerEmail = '[email protected]' | ||
|
||
licenseName = 'The Apache Software License, Version 2.0' | ||
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt' | ||
allLicenses = ["Apache-2.0"] | ||
} | ||
|
||
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle' | ||
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle' | ||
|
||
allprojects { | ||
repositories { | ||
jcenter() | ||
} | ||
} | ||
|
||
buildscript { | ||
repositories { | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:1.0.0' | ||
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0' | ||
classpath 'com.github.dcendents:android-maven-plugin:1.2' | ||
} | ||
} | ||
|
||
dependencies { | ||
|