Skip to content

Commit bbb2c90

Browse files
authored
Merge pull request #10 from StringCare/develop
Develop
2 parents 81bebbd + abe8cf7 commit bbb2c90

File tree

3 files changed

+14
-59
lines changed

3 files changed

+14
-59
lines changed

README.md

Lines changed: 10 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,25 @@
1-
<p align="center"><img width="10%" vspace="20" src="https://raw.githubusercontent.com/StringCare/AndroidLibrary/develop/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png"></p>
1+
<p align="center"><img width="10%" vspace="20" src="https://github.com/StringCare/AndroidPlugin/raw/master/images/ic_launcher_round.png"></p>
22

3+
<h3 align="center" style="margin-bottom:30px" vspace="20">StringCare Gradle Plugin</h3>
34

4-
# String Care Android Plugin
5-
Source code of plugin used in Android Studio at compilation time for strings encryption.
5+
<p align="center"><img width="10%" vspace="20" src="https://github.com/StringCare/AndroidLibrary/raw/develop/white.png"></p>
66

7-
Gradle implementation
8-
------------
7+
#### [Wiki Plugin](https://github.com/StringCare/GradlePlugin/wiki)
98

10-
root_project/build.gradle
11-
```groovy
12-
// root_project/build.gradle
9+
#### [What is StringCare](https://github.com/StringCare/GradlePlugin/wiki/What-is-StringCare)
1310

14-
buildscript {
11+
#### [Plugin Implementation](https://github.com/StringCare/GradlePlugin/wiki/Plugin-Implementation)
1512

16-
ext {
17-
stringcare_version = '0.7'
18-
}
13+
#### [Plugin Configuration](https://github.com/StringCare/GradlePlugin/wiki/Plugin-Configuration)
1914

20-
repositories {
21-
jcenter()
22-
}
15+
#### [Plugin Obfuscation](https://github.com/StringCare/GradlePlugin/wiki/Plugin-Obfuscation)
2316

24-
dependencies {
25-
classpath "com.stringcare:plugin:$stringcare_version"
26-
}
27-
28-
}
29-
30-
apply plugin: StringCare
31-
32-
stringcare {
33-
34-
debug true // prints details
35-
36-
modules {
37-
38-
sample {
39-
stringFiles = ['strings.xml',"other_file.xml"]
40-
srcFolders = ['src/main', "other_folder"]
41-
}
42-
43-
// root_folder/sample/src/main/res/.../strings.xml
44-
// root_folder/sample/src/main/res/.../other_file.xml
45-
// root_folder/sample/other_folder/res/.../strings.xml
46-
// root_folder/sample/other_folder/res/.../other_file.xml
47-
48-
other_module {
49-
srcFolders = ['src/moduleB']
50-
}
51-
52-
// root_folder/other_module/src/moduleB/res/.../strings.xml
53-
54-
other_module_ {} //
55-
56-
// root_folder/other_module_/src/main/res/.../strings.xml
57-
58-
}
59-
60-
}
61-
```
17+
#### [Wiki Library](https://github.com/StringCare/AndroidLibrary/wiki)
6218

6319

6420
License
6521
-------
66-
Copyright 2017 Efraín Espada
22+
Copyright 2018 StringCare [🐒 SpaceMonkeys]
6723

6824
Licensed under the Apache License, Version 2.0 (the "License");
6925
you may not use this file except in compliance with the License.

build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ apply plugin: 'java'
2424
apply plugin: 'com.jfrog.bintray'
2525

2626
group 'com.stringcare'
27-
version '0.7'
27+
version '0.9'
2828

2929
sourceCompatibility = 1.8
3030

@@ -34,18 +34,14 @@ repositories {
3434
}
3535

3636
dependencies {
37-
// Use the latest Groovy version for building this library
3837
compile 'org.codehaus.groovy:groovy-all:2.4.12'
3938
compile gradleApi()
40-
41-
// Use the awesome Spock testing and specification framework
4239
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
4340
}
4441

4542

4643
install {
4744
repositories.mavenInstaller {
48-
// This generates POM.xml with proper parameters
4945
pom {
5046
project {
5147
packaging 'aar'

src/main/groovy/META-INF/MANIFEST.MF

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Manifest-Version: 1.0
2+
Main-Class: StringCare
3+

0 commit comments

Comments
 (0)