This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from titanium-codes/develop
1.1.0
- Loading branch information
Showing
27 changed files
with
477 additions
and
646 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
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
apply plugin: 'com.jfrog.bintray' | ||
apply from: '../deps.gradle' | ||
|
||
def mSiteUrl = 'https://github.com/titanium-codes' | ||
def mGitUrl = 'https://github.com/titanium-codes/LocGetter' | ||
|
||
tasks.withType(Javadoc) { | ||
options.addStringOption('Xdoclint:none', '-quiet') | ||
options.addStringOption('encoding', 'UTF-8') | ||
options.addStringOption('charSet', 'UTF-8') | ||
} | ||
tasks.whenTaskAdded { task -> | ||
if (task.name == 'javadoc') { | ||
task.configure { | ||
failOnError false | ||
} | ||
} | ||
} | ||
android { | ||
compileSdkVersion versions.compileSdkVersion | ||
} | ||
ext { | ||
bintrayRepo = 'Android' | ||
bintrayName = versions.artifact | ||
|
||
publishedGroupId = 'codes.titanium' | ||
libraryName = versions.artifact | ||
artifact = versions.artifact | ||
|
||
libraryDescription = 'Android library for getting user current location' | ||
|
||
// Your github repo link | ||
siteUrl = mSiteUrl | ||
gitUrl = mGitUrl | ||
githubRepository = 'titanium-codes/LocGetter' | ||
|
||
libraryVersion = versions.publishVersion | ||
|
||
developerId = 'blainepwnz' | ||
developerName = 'Andrew Tomash' | ||
developerEmail = 'andrew.tomash@titanium-soft.com' | ||
licenseName = 'MIT' | ||
licenseUrl = 'https://opensource.org/licenses/MIT' | ||
allLicenses = ["MIT"] | ||
} | ||
bintray { | ||
pkg { | ||
userOrg = "titanium-codes" | ||
} | ||
} | ||
apply from: 'https://raw.githubusercontent.com/nisrulz/JCenter/master/installv1.gradle' | ||
apply from: 'https://raw.githubusercontent.com/nisrulz/JCenter/master/bintrayv1.gradle' | ||
apply plugin: 'kotlin-android' | ||
apply plugin: 'kotlin-android-extensions' | ||
|
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
ext.versions = [ | ||
artifact : 'locgetter', | ||
compileSdkVersion: 28, | ||
minSdk: 16, | ||
buildToolsVersion: '28.0.3', | ||
publishVersion : '1.1.0', | ||
buildCode : 4, | ||
kotlinVersion : '1.3.11', | ||
//libs | ||
playServLocations :'com.google.android.gms:play-services-location:16.0.0', | ||
rxAndroid : 'io.reactivex.rxjava2:rxandroid:2.1.0', | ||
rxJava2 : 'io.reactivex.rxjava2:rxjava:2.2.3', | ||
kotlinStd : 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.11', | ||
] |
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,6 +1,6 @@ | ||
#Thu Nov 02 11:14:02 EET 2017 | ||
#Mon Jan 07 17:19:22 EET 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip |
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
Oops, something went wrong.