Skip to content

Commit

Permalink
updating to 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinSchildhorn committed Aug 24, 2020
1 parent 90b6f11 commit 5047576
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 40 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ allprojects {
}
dependencies {
implementation 'com.github.KevinSchildhorn:OTPView:0.0.5'
implementation 'com.github.KevinSchildhorn:OTPView:0.0.8'
}
```

Expand Down
42 changes: 5 additions & 37 deletions otpView/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,59 +19,27 @@ android {
defaultConfig {
minSdkVersion 26
targetSdkVersion 29
versionCode 3
versionName "0.0.5"
versionCode 8
versionName "0.0.8"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}

buildTypes {
release {
minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release

groupId = 'com.kevinschildhorn.otpview'
artifactId = 'otpview'
version = '0.0.5'

pom {
name = 'OTP View'
description = 'A very customizable otp or pin view for android'
url = 'https://github.com/KevinSchildhorn/OTPView'
licenses {
license {
name = 'MIT License'
url = 'https://opensource.org/licenses/MIT'
}
}
}
}
debug(MavenPublication) {
from components.debug

groupId = 'com.kevinschildhorn.otpview'
artifactId = 'otpview-debug'
version = '0.0.5'
}
}
}
}

dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.appcompat:appcompat:1.1.0'
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.2.0'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

Expand Down
2 changes: 0 additions & 2 deletions otpView/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kevinschildhorn.otpview.otpview">

/
</manifest>

0 comments on commit 5047576

Please sign in to comment.