Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
update: build.gradle
Browse files Browse the repository at this point in the history
Release v1.0.5
  • Loading branch information
amirisback committed May 9, 2021
1 parent ea77501 commit 5498359
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@
# Version Release
This Is Latest Release

$version_release = 1.0.4
$version_release = 1.0.5

What's New??

* Fixing ID layout *
* Update Gradle Latest Version *

# Download this project
Expand All @@ -36,7 +35,7 @@ What's New??

dependencies {
// library frogo-ui-kit
implementation 'com.github.amirisback:frogo-ui-kit:1.0.4'
implementation 'com.github.amirisback:frogo-ui-kit:1.0.5'
}

# Documentation
Expand Down
13 changes: 8 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'

android {
Expand All @@ -13,7 +12,7 @@ android {

def versionMajor = 1
def versionMinor = 0
def versionPatch = 3
def versionPatch = 5

def versionCodeLibrary = (versionMajor * 100) + (versionMinor * 10) + (versionPatch)
def versionNameLibrary = "$versionMajor.$versionMinor.$versionPatch"
Expand All @@ -32,7 +31,11 @@ android {
}

compileSdkVersion 30
buildToolsVersion "30.0.2"
buildToolsVersion "30.0.3"

buildFeatures {
viewBinding = true
}

defaultConfig {
applicationId "com.frogobox.frogouikit"
Expand All @@ -58,11 +61,11 @@ dependencies {
implementation 'androidx.core:core-ktx:1.3.2'

implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'

implementation project(':frogodesignkit')

testImplementation 'junit:junit:4.13.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.4.32"
ext.kotlin_version = "1.5.0"
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'com.android.tools.build:gradle:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -17,7 +17,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Expand Down
2 changes: 1 addition & 1 deletion frogodesignkit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {

def versionMajor = 1
def versionMinor = 0
def versionPatch = 3
def versionPatch = 5

def versionCodeLibrary = (versionMajor * 100) + (versionMinor * 10) + (versionPatch)
def versionNameLibrary = "$versionMajor.$versionMinor.$versionPatch"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

0 comments on commit 5498359

Please sign in to comment.