-
Notifications
You must be signed in to change notification settings - Fork 18
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 #110 from Trendyol/view-binding-dev-process
View binding dev process
- Loading branch information
Showing
104 changed files
with
2,139 additions
and
2,449 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
repositories { | ||
jcenter() | ||
google() | ||
mavenCentral() | ||
} | ||
plugins { | ||
`kotlin-dsl` | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
object Configs { | ||
|
||
const val compileSdkVersion = 29 | ||
const val compileSdkVersion = 33 | ||
const val minSdkVersion = 21 | ||
const val targetSdkVersion = 29 | ||
const val buildToolsVersion = "29.0.3" | ||
const val targetSdkVersion = 33 | ||
const val buildToolsVersion = "33.0.0" | ||
|
||
const val applicationId = "com.trendyol.uicomponents" | ||
const val group = "com.trendyol.ui-components" | ||
} |
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,13 +1,12 @@ | ||
object Plugins { | ||
|
||
const val androidGradlePlugin = "com.android.tools.build:gradle:4.2.1" | ||
const val kotlinGradlePlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0" | ||
const val mavenGradlePlugin = "com.github.dcendents:android-maven-gradle-plugin:2.1" | ||
const val androidGradlePlugin = "com.android.tools.build:gradle:7.3.1" | ||
const val kotlinGradlePlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20" | ||
|
||
const val androidApplication = "com.android.application" | ||
const val androidLibrary = "com.android.library" | ||
const val kotlinAndroid = "kotlin-android" | ||
const val kotlinKapt = "kotlin-kapt" | ||
const val kotlinParcelize = "kotlin-parcelize" | ||
const val androidMaven = "com.github.dcendents.android-maven" | ||
const val mavenPublish = "publish" | ||
} |
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,11 @@ | ||
plugins { | ||
id("maven-publish") | ||
} | ||
|
||
afterEvaluate { | ||
publishing.publications { | ||
create<MavenPublication>("release") { | ||
from(components.getByName("release")) | ||
} | ||
} | ||
} |
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,10 +1,12 @@ | ||
org.gradle.jvmargs=-Dfile.encoding=UTF-8 | ||
org.gradle.caching=true | ||
org.gradle.daemon=true | ||
org.gradle.configureondemand=true | ||
|
||
android.useAndroidX=true | ||
android.enableJetifier=true | ||
org.gradle.daemon=true | ||
android.databinding.incremental=true | ||
kapt.use.worker.api=true | ||
android.disableAutomaticComponentCreation=true | ||
|
||
kapt.include.compile.classpath=false | ||
kapt.incremental.apt=false | ||
org.gradle.configureondemand=true |
Binary file not shown.
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,5 @@ | ||
#Thu Nov 21 16:27:22 EET 2019 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-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.