Skip to content

Commit

Permalink
changes before release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dima committed Apr 8, 2019
1 parent bbe1f6c commit 3b424fe
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 8 deletions.
5 changes: 5 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

lintOptions {
abortOnError false
}

}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pc.dd.passwordedittext
package pc.dd.example

import android.support.test.InstrumentationRegistry
import android.support.test.runner.AndroidJUnit4
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="pc.dd.passwordedittext">
package="pc.dd.example">

<application
android:allowBackup="true"
Expand All @@ -9,7 +9,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity android:name="pc.dd.example.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pc.dd.passwordedittext
package pc.dd.example

import android.support.v7.app.AppCompatActivity
import android.os.Bundle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pc.dd.passwordedittext
package pc.dd.example

import org.junit.Test

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.novoda:bintray-release:0.9'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -19,7 +20,6 @@ allprojects {
repositories {
google()
jcenter()

}
}

Expand Down
21 changes: 19 additions & 2 deletions password_view_lib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'com.novoda.bintray-release'

publish {

def groupProjectID = 'pc.dd.password_view'
def artifactProjectID = 'PasswordEditText'
def publishVersionID = '1.1.2'

userOrg = 'followthemoney1'
repoName = 'PasswordEditText'
groupId = groupProjectID
artifactId = artifactProjectID
publishVersion = publishVersionID
desc = 'concept library for checking the password for correct input'
website = 'https://github.com/followthemoney1/PasswordEditText.git'
}


android {
compileSdkVersion 28

defaultConfig {
minSdkVersion 15
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
versionName "1.1.2"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit 3b424fe

Please sign in to comment.