-
Notifications
You must be signed in to change notification settings - Fork 42
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
Paul Rybitskyi
committed
Aug 16, 2020
1 parent
0d181ac
commit d8bbc66
Showing
8 changed files
with
160 additions
and
106 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 was deleted.
Oops, something went wrong.
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,46 @@ | ||
ext { | ||
appConfig = [ | ||
compileSdkVersion: 29, | ||
targetSdkVersion: 29, | ||
minSdkVersion: 21, | ||
buildToolsVersion: "29.0.2", | ||
applicationId: "com.paulrybitskyi.sample", | ||
versionCode: 1, | ||
versionName: "1.0.0", | ||
javaCompatibilityVersion: JavaVersion.VERSION_1_8, | ||
kotlinCompatibilityVersion: JavaVersion.VERSION_1_8 | ||
] | ||
|
||
depVersions = [ | ||
kotlinVersion: "1.3.72", | ||
gradlePluginVersion: "4.0.1", | ||
gradleVersionsPluginVersion: "0.29.0", | ||
mavenGradlePlugin: "2.1", | ||
bintrayUploadPlugin: "1.8.5", | ||
appCompatVersion: "1.1.0", | ||
cardViewVersion: "1.0.0", | ||
browserVersion: "1.2.0", | ||
recyclerViewVersion: "1.1.0", | ||
adapsterVersion: "1.0.13", | ||
annotationsVersion: "1.0.0", | ||
jUnitVersion: "4.13", | ||
testRunnerVersion: "1.2.0" | ||
] | ||
|
||
deps = [ | ||
androidGradlePlugin: "com.android.tools.build:gradle:${depVersions.gradlePluginVersion}", | ||
kotlinGradlePlugin: "org.jetbrains.kotlin:kotlin-gradle-plugin:${depVersions.kotlinVersion}", | ||
gradleVersionsPlugin: "com.github.ben-manes:gradle-versions-plugin:${depVersions.gradleVersionsPluginVersion}", | ||
mavenGradlePlugin: "com.github.dcendents:android-maven-gradle-plugin:${depVersions.mavenGradlePlugin}", | ||
bintrayUploadPlugin: "com.jfrog.bintray.gradle:gradle-bintray-plugin:${depVersions.bintrayUploadPlugin}", | ||
kotlinStdLib: "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${depVersions.kotlinVersion}", | ||
appCompat: "androidx.appcompat:appcompat:${depVersions.appCompatVersion}", | ||
cardView: "androidx.cardview:cardview:${depVersions.cardViewVersion}", | ||
browser: "androidx.browser:browser:${depVersions.browserVersion}", | ||
recyclerView: "androidx.recyclerview:recyclerview:${depVersions.recyclerViewVersion}", | ||
adapster: "com.arthurivanets.adapster:adapster:${depVersions.adapsterVersion}", | ||
annotations: "androidx.annotation:annotation:${depVersions.annotationsVersion}", | ||
jUnit: "junit:junit:${depVersions.jUnitVersion}", | ||
testRunner: "androidx.test:runner:${depVersions.testRunnerVersion}" | ||
] | ||
} |
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,18 @@ | ||
ext { | ||
publishingConfig = [ | ||
releaseRepoName: "maven", | ||
releaseGroupId: "com.paulrybitskyi.persistentsearchview", | ||
releaseWebsite: "https://github.com/mars885/persistent-search-view", | ||
releaseLicense: ["Apache-2.0"], | ||
releaseNotesFile: "CHANGELOG.md", | ||
licenseName: "The Apache Software License, Version 2.0", | ||
licenseUrl: "http://www.apache.org/licenses/LICENSE-2.0.txt", | ||
allLicenses: ["Apache-2.0"], | ||
developerId: "mars885", | ||
developerName: "Paul Rybitskyi", | ||
developerEmail: "paul.rybitskyi.work@gmail.com", | ||
siteUrl: "https://github.com/mars885/persistent-search-view", | ||
gitUrl: "https://github.com/mars885/persistent-search-view.git", | ||
issueTracker: "https://github.com/mars885/persistent-search-view/issues" | ||
] | ||
} |
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
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,8 @@ | ||
ext { | ||
libraryConfig = [ | ||
versionCode: 5, | ||
versionName: "1.1.2", | ||
artifactName: "persistentsearchview", | ||
artifactDescription: "Android library designed to simplify the process of implementing search-related functionality.", | ||
] | ||
} |
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