Skip to content

Commit 6fdfe45

Browse files
committed
v0.6
1 parent 77adfeb commit 6fdfe45

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

5-
version = "0.5"
5+
version = "0.6"
66

77
android {
88
compileSdkVersion 25
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.efraespada.androidstringobfuscator">
1+
<manifest package="com.stringcare.library">
32
</manifest>

library/src/main/java/com/efraespada/stringcarelibrary/SC.java renamed to library/src/main/java/com/stringcare/library/SC.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.efraespada.stringcarelibrary;
1+
package com.stringcare.library;
22

33
import android.content.Context;
44
import android.content.pm.PackageInfo;

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ dependencies {
3636
})
3737
implementation 'com.android.support:appcompat-v7:26.1.0'
3838
testImplementation 'junit:junit:4.12'
39-
// implementation project(path: ':library')
40-
implementation "com.stringcare:library:$stringcare_version"
39+
implementation project(path: ':library')
40+
// implementation "com.stringcare:library:$stringcare_version"
4141
}
4242

4343

sample/src/main/java/com/efraespada/stringobfuscator/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import android.os.Bundle;
55
import android.widget.TextView;
66

7-
import com.efraespada.stringcarelibrary.SC;
7+
import com.stringcare.library.SC;
88

99
public class MainActivity extends AppCompatActivity {
1010

0 commit comments

Comments
 (0)