├── .gitignore
├── .idea
├── .gitignore
├── .name
├── codeStyles
│ ├── Project.xml
│ └── codeStyleConfig.xml
├── compiler.xml
├── gradle.xml
├── jarRepositories.xml
├── misc.xml
├── runConfigurations.xml
└── vcs.xml
├── LICENSE
├── README.md
├── app
├── .gitignore
├── build.gradle
├── libs
│ └── plugin.jar
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── github
│ │ └── jxiaow
│ │ └── jiagu
│ │ └── plugin
│ │ └── ExampleInstrumentedTest.kt
│ ├── main
│ ├── AndroidManifest.xml
│ └── res
│ │ ├── drawable-v24
│ │ └── ic_launcher_foreground.xml
│ │ ├── drawable
│ │ └── ic_launcher_background.xml
│ │ ├── mipmap-anydpi-v26
│ │ ├── ic_launcher.xml
│ │ └── ic_launcher_round.xml
│ │ ├── mipmap-hdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-mdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxxhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── github
│ └── jxiaow
│ └── jiagu
│ └── plugin
│ └── ExampleUnitTest.kt
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── plugin
├── .gitignore
├── build.gradle.kts
└── src
│ └── main
│ ├── kotlin
│ └── com
│ │ └── github
│ │ └── jxiaow
│ │ └── jiagu
│ │ ├── JiaGuCmds.kt
│ │ ├── JiaGuExtension.kt
│ │ ├── JiaGuPlugin.kt
│ │ ├── JiaGuTask.kt
│ │ └── Utils.kt
│ └── resources
│ └── META-INF
│ └── gradle-plugins
│ └── com.github.jxiaow.jiagu.properties
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 |
--------------------------------------------------------------------------------
/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /workspace.xml
3 |
--------------------------------------------------------------------------------
/.idea/.name:
--------------------------------------------------------------------------------
1 | android-gradle-plugin
--------------------------------------------------------------------------------
/.idea/codeStyles/Project.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | xmlns:android
17 |
18 | ^$
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | xmlns:.*
28 |
29 | ^$
30 |
31 |
32 | BY_NAME
33 |
34 |
35 |
36 |
37 |
38 |
39 | .*:id
40 |
41 | http://schemas.android.com/apk/res/android
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 | .*:name
51 |
52 | http://schemas.android.com/apk/res/android
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 | name
62 |
63 | ^$
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 | style
73 |
74 | ^$
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 | .*
84 |
85 | ^$
86 |
87 |
88 | BY_NAME
89 |
90 |
91 |
92 |
93 |
94 |
95 | .*
96 |
97 | http://schemas.android.com/apk/res/android
98 |
99 |
100 | ANDROID_ATTRIBUTE_ORDER
101 |
102 |
103 |
104 |
105 |
106 |
107 | .*
108 |
109 | .*
110 |
111 |
112 | BY_NAME
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
--------------------------------------------------------------------------------
/.idea/codeStyles/codeStyleConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
22 |
23 |
--------------------------------------------------------------------------------
/.idea/jarRepositories.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright [yyyy] [name of copyright owner]
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Android-Gradle-Plugin [](https://jitpack.io/#jxiaow/android-gradle-plugin)
2 |
3 | 一款实现了360加固的Gradle插件,在自动编译打包后进行360加固流程操作。
4 |
5 | ### 使用步骤
6 |
7 | #### 1. 添加依赖
8 |
9 | * 在根`build.gradle`中添加:
10 |
11 | ```groovy
12 | buildscript {
13 | // ...
14 | repositories {
15 | // ...
16 | maven { url "https://jitpack.io" }
17 | }
18 | dependencies {
19 | classpath "com.android.tools.build:gradle:$gradle_version"
20 | classpath 'com.github.jxiaow:android-gradle-plugin:$version'
21 | }
22 | }
23 |
24 | allprojects {
25 | repositories {
26 | //...
27 | maven { url "https://jitpack.io" }
28 | }
29 | }
30 | ```
31 |
32 | **tips:** 请替换 `$version`为最新的版本号:[](https://jitpack.io/#jxiaow/android-gradle-plugin), `$gradle_version`的版本号必须`>= 4.0.1`
33 |
34 | * 在`app`的模块`build.gradle`中添加:
35 |
36 | ```groovy
37 | apply plugin: 'com.github.jxiaow.jiagu'
38 | ```
39 |
40 | #### 2. 参数配置
41 |
42 | 使用这款插件需要在`app`的`build.gradle`中添加一些配置信息,如下:
43 |
44 | ```groovy
45 | android {
46 |
47 | // 配置apk签名
48 | signingConfigs {
49 | release {
50 | storeFile file('签名文件路径')
51 | storePassword '文件存储密码'
52 | keyAlias '签名文件简称'
53 | keyPassword '签名文件密码'
54 | }
55 | }
56 |
57 | // 加固参数配置
58 | jiagu {
59 | home '../360jiagu' // 360加固软件的根目录
60 | buildTypes 'release', 'debug' // 需要加固的编译类型
61 | configs '-crashlog' // 选择360的可选配置服务
62 | username 'user' // 360加固用户名
63 | password 'password' // 360加固密码
64 | charsetName 'GBK' // 360加固控制台输出字符编码
65 | // apk签名文件, 如果在Android中配置了签名文件,此项可以不用配置,插件会自动读取名为'release'的签名文件
66 | signingConfig signingConfigs.release
67 | }
68 | }
69 | ```
70 |
71 | #### 3. 开始加固
72 |
73 | 确认上述参数无误后,我们可以在AS的Gradle窗口app/task看到我们所配置的加固`JiaGuApk`。
74 |
75 | 或者在控制台中切换到当前项目根目录执行
76 |
77 | ```shell
78 | # 各个系统的控制台gradle命令可能不一样: ./gradlew 或 gradlew
79 | # 一次性打包加固所有渠道的apk
80 | ./gradlew clean jiaGuApk
81 | # 打包并加固某一个渠道的apk
82 | # 命令 ./gradlew jiaGuApk[渠道名][BuildType类型]
83 | # 如:
84 | ./gradlew jiaGuApkXiaomiRelease
85 | ```
86 |
87 | ### 文档
88 |
89 | [android-gradle-plugin](https://jxiaow.github.io/android-gradle-plugin/plugin/com.github.jxiaow.jiagu/index.html)
90 |
91 | ### 360加固助手
92 |
93 | [360加固助手](https://jiagu.360.cn/#/global/download)
94 |
95 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 | apply plugin: 'kotlin-android'
3 | apply plugin: 'kotlin-android-extensions'
4 | apply plugin: 'com.github.jxiaow.jiagu'
5 |
6 |
7 | android {
8 | compileSdkVersion 30
9 | buildToolsVersion "30.0.2"
10 |
11 | defaultConfig {
12 | applicationId "com.github.jxiaow.jiagu.plugin"
13 | minSdkVersion 16
14 | targetSdkVersion 30
15 | versionCode 1
16 | versionName "1.0"
17 |
18 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19 | }
20 |
21 | signingConfigs {
22 | release {
23 | storeFile file('签名文件路径')
24 | storePassword '文件存储密码'
25 | keyAlias '签名文件简称'
26 | keyPassword '签名文件密码'
27 | }
28 | }
29 |
30 | buildTypes {
31 | release {
32 | minifyEnabled false
33 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
34 | signingConfig signingConfigs.release
35 | }
36 | }
37 |
38 | jiagu {
39 | home '../360jiagu' // 360加固软件的根目录
40 | buildTypes 'release', 'debug' // 需要加固的编译类型
41 | configs '-crashlog' // 选择360的可选配置服务
42 | username 'user' // 360加固用户名
43 | password 'password' // 360加固密码
44 | charsetName 'GBK' // 360加固控制台输出字符编码
45 | // apk签名文件, 如果在Android中配置了签名文件,此项可以不用配置,插件会自动读取名为'release'的签名文件
46 | signingConfig signingConfigs.release
47 | }
48 | }
49 |
50 | dependencies {
51 | implementation fileTree(dir: "libs", include: ["*.jar"])
52 | implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
53 | implementation 'androidx.core:core-ktx:1.3.1'
54 | implementation 'androidx.appcompat:appcompat:1.2.0'
55 | testImplementation 'junit:junit:4.12'
56 | androidTestImplementation 'androidx.test.ext:junit:1.1.2'
57 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
58 | }
59 |
--------------------------------------------------------------------------------
/app/libs/plugin.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/libs/plugin.jar
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
--------------------------------------------------------------------------------
/app/src/androidTest/java/com/github/jxiaow/jiagu/plugin/ExampleInstrumentedTest.kt:
--------------------------------------------------------------------------------
1 | package com.github.jxiaow.jiagu.plugin
2 |
3 | import androidx.test.platform.app.InstrumentationRegistry
4 | import androidx.test.ext.junit.runners.AndroidJUnit4
5 |
6 | import org.junit.Test
7 | import org.junit.runner.RunWith
8 |
9 | import org.junit.Assert.*
10 |
11 | /**
12 | * Instrumented test, which will execute on an Android device.
13 | *
14 | * See [testing documentation](http://d.android.com/tools/testing).
15 | */
16 | @RunWith(AndroidJUnit4::class)
17 | class ExampleInstrumentedTest {
18 | @Test
19 | fun useAppContext() {
20 | // Context of the app under test.
21 | val appContext = InstrumentationRegistry.getInstrumentation().targetContext
22 | assertEquals("com.github.ixiaow.jiagu.plugin", appContext.packageName)
23 | }
24 | }
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v24/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
15 |
18 |
21 |
22 |
23 |
24 |
30 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
15 |
20 |
25 |
30 |
35 |
40 |
45 |
50 |
55 |
60 |
65 |
70 |
75 |
80 |
85 |
90 |
95 |
100 |
105 |
110 |
115 |
120 |
125 |
130 |
135 |
140 |
145 |
150 |
155 |
160 |
165 |
170 |
171 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #6200EE
4 | #3700B3
5 | #03DAC5
6 |
--------------------------------------------------------------------------------
/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | JiaGuPlugin
3 |
--------------------------------------------------------------------------------
/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/test/java/com/github/jxiaow/jiagu/plugin/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.github.jxiaow.jiagu.plugin
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | buildscript {
3 | ext.kotlin_version = "1.3.72"
4 | repositories {
5 | google()
6 | jcenter()
7 | maven {
8 | url { './plugin/build/repos/releases' }
9 | }
10 | maven {
11 | url uri("https://jitpack.io")
12 | }
13 | }
14 | dependencies {
15 | classpath "com.android.tools.build:gradle:4.0.1"
16 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
17 | classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
18 | classpath 'com.github.jxiaow:android-gradle-plugin:1.0.4'
19 | // NOTE: Do not place your application dependencies here; they belong
20 | // in the individual module build.gradle files
21 | }
22 | }
23 |
24 | allprojects {
25 | repositories {
26 | google()
27 | jcenter()
28 | maven {
29 | url { './plugin/build/repos/releases' }
30 | }
31 | maven {
32 | url { "https://jitpack.io" }
33 | }
34 | }
35 | }
36 |
37 | task clean(type: Delete) {
38 | delete rootProject.buildDir
39 | }
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx2048m
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 | # AndroidX package structure to make it clearer which packages are bundled with the
15 | # Android operating system, and which are packaged with your app"s APK
16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
17 | android.useAndroidX=true
18 | # Automatically convert third-party libraries to use AndroidX
19 | android.enableJetifier=true
20 | # Kotlin code style for this project: "official" or "obsolete":
21 | kotlin.code.style=official
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jxiaow/android-gradle-plugin/36287957948fd6697088300df4a509e1a7ad0b4b/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Sep 25 17:48:39 CST 2020
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | set DIRNAME=%~dp0
12 | if "%DIRNAME%" == "" set DIRNAME=.
13 | set APP_BASE_NAME=%~n0
14 | set APP_HOME=%DIRNAME%
15 |
16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17 | set DEFAULT_JVM_OPTS=
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windows variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 |
53 | :win9xME_args
54 | @rem Slurp the command line arguments.
55 | set CMD_LINE_ARGS=
56 | set _SKIP=2
57 |
58 | :win9xME_args_slurp
59 | if "x%~1" == "x" goto execute
60 |
61 | set CMD_LINE_ARGS=%*
62 |
63 | :execute
64 | @rem Setup the command line
65 |
66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
67 |
68 | @rem Execute Gradle
69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
70 |
71 | :end
72 | @rem End local scope for the variables with windows NT shell
73 | if "%ERRORLEVEL%"=="0" goto mainEnd
74 |
75 | :fail
76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
77 | rem the _cmd.exe /c_ return code!
78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
79 | exit /b 1
80 |
81 | :mainEnd
82 | if "%OS%"=="Windows_NT" endlocal
83 |
84 | :omega
85 |
--------------------------------------------------------------------------------
/plugin/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/plugin/build.gradle.kts:
--------------------------------------------------------------------------------
1 | plugins {
2 | kotlin("jvm")
3 | id("org.jetbrains.dokka") version "1.4.0-rc"
4 | id("com.github.dcendents.android-maven")
5 | `maven-publish`
6 | }
7 |
8 | @kotlin.Suppress("GradleDependency")
9 | kotlin {
10 | dependencies {
11 | implementation(gradleApi())
12 | compileOnly("com.android.tools.build:gradle:4.0.1")
13 | }
14 |
15 | }
16 |
17 | repositories {
18 | mavenLocal()
19 | jcenter()
20 | }
21 |
22 | group = "com.github.jxiaow"
23 | version = "1.0.4"
24 |
25 | tasks {
26 | val sourcesJar by registering(Jar::class) {
27 | dependsOn(JavaPlugin.CLASSES_TASK_NAME)
28 | archiveClassifier.set("sources")
29 | from(sourceSets["main"].allSource)
30 | }
31 |
32 | val javadocJar by registering(Jar::class) {
33 | dependsOn("dokkaJavadoc")
34 | archiveClassifier.set("javadoc")
35 | from(javadoc)
36 | }
37 |
38 | artifacts {
39 | archives(sourcesJar)
40 | archives(javadocJar)
41 | archives(jar)
42 | }
43 | }
44 |
45 |
46 | publishing {
47 | publications {
48 | create("maven") {
49 | artifactId = "android-gradle-plugin"
50 | from(components["java"])
51 | artifact(tasks["sourcesJar"])
52 | artifact(tasks["javadocJar"])
53 |
54 | versionMapping {
55 | usage("com.android.tools.build:gradle") {
56 | fromResolutionOf("runtimeClasspath")
57 | }
58 | }
59 | pom {
60 | licenses {
61 | license {
62 | name.set("The Apache License, Version 2.0")
63 | url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
64 | }
65 | }
66 | developers {
67 | developer {
68 | id.set("jxiaow")
69 | name.set("jxiaow")
70 | email.set("jxiaow@126.com")
71 | }
72 | }
73 | scm {
74 | connection.set("scm:git:git://github.com/jxiaow/android-gradle-plugin.git")
75 | developerConnection.set("scm:git:ssh://githu.com/jxiaow/android-gradle-plugin.git")
76 | url.set("https://github.com/jxiaow/android-gradle-plugin/")
77 | }
78 | }
79 | }
80 | }
81 | repositories {
82 | maven {
83 | // change URLs to point to your repos, e.g. http://my.org/repo
84 | val releasesRepoUrl = uri("$buildDir/repos/releases")
85 | val snapshotsRepoUrl = uri("$buildDir/repos/snapshots")
86 | url = if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl
87 | }
88 | }
89 | }
--------------------------------------------------------------------------------
/plugin/src/main/kotlin/com/github/jxiaow/jiagu/JiaGuCmds.kt:
--------------------------------------------------------------------------------
1 | package com.github.jxiaow.jiagu
2 |
3 | import java.io.File
4 | import java.nio.charset.Charset
5 |
6 | /**
7 | * 加固命令类,此类中包含了相关的加固命令,这些命令来源于360加固文档
8 | */
9 | class JiaGuCmds(extension: JiaGuExtension) {
10 | //360加固的根目录 jiagu
11 | private val baseDir: String = "${extension.home}${File.separator}jiagu"
12 |
13 | /**
14 | * 是否已经进行数据初始化
15 | */
16 | private var isInitConfig: Boolean = false
17 |
18 | /**
19 | * 控制台显示的符串编码
20 | */
21 | private var charset: Charset = Charset.defaultCharset()
22 |
23 | init {
24 | require(File(baseDir).exists()) { "在$baseDir 中找不到可执行文件!" }
25 | // 设置编码格式
26 | charset = forNameCharsetOrNull(extension.charsetName) ?: charset
27 | }
28 |
29 | /**********************************命令*********************************************/
30 | /**
31 | * 加固执行的bash命令
32 | */
33 | val bashCmd = "java -jar ${baseDir}${File.separator}jiagu.jar"
34 |
35 | /**
36 | * 执行登陆命令
37 | */
38 | val loginCmd = "$bashCmd -login ${extension.username} ${extension.password}"
39 |
40 | /**
41 | * 导入签名信息命令
42 | */
43 | val importSignCmd = "$bashCmd -importsign ${extension.signingConfig.sign} "
44 |
45 | /**
46 | * 展示签名信息命令
47 | */
48 | val showSignCmd = "$bashCmd -showsign"
49 |
50 | /**
51 | * 配置可选配置
52 | */
53 | val configCmd: String? = extension.jiaGuConfig?.let { "$bashCmd -config $it" }
54 |
55 | /**
56 | * 显示配置信息
57 | */
58 | val showConfigCmd = "$bashCmd -showconfig"
59 |
60 | /**
61 | * 显示配置的版本
62 | */
63 | val showVersionCmd = "$bashCmd -version"
64 |
65 | /*******************************************************************************/
66 |
67 | /**
68 | * 利用控制台执行命令
69 | * @return 结果信息,过滤了一些不相关的信息
70 | */
71 | fun String.executeCmd(): String {
72 | log("开始执行命令:$this")
73 | val p = this.execute()
74 | var result = p.text(charset)
75 | // 无用信息,tmp中的信息控制台会输出,所以过滤
76 | val tmp = """
77 | ################################################
78 | # #
79 | # ## # # ## ### ### ## ### #
80 | # # # # # # # # # # # # # #
81 | # ### # # ### # # # ## # #
82 | # # # ### ### # # # ### # # ### #
83 | # #
84 | # Obfuscation by Allatori Obfuscator v5.6 DEMO #
85 | # #
86 | # http://www.allatori.com #
87 | # #
88 | ################################################
89 |
90 | """.trimIndent()
91 | // 过滤到可执行文件的路径
92 | if (result.contains(baseDir)) {
93 | result = result.substring(result.indexOf(baseDir) + baseDir.length)
94 | }
95 | //过滤到tmp信息,并过滤每一行开头的回车换行
96 | result = result.replace(tmp, "").trimStart()
97 | log("输出结果:$result")
98 | p.waitFor() // 用以等待外部进程调用结束
99 | return result
100 | }
101 |
102 | /**
103 | * 执行加固 [apkFile] 需要加固的原始文件, [output] 加固后文件的输出目录
104 | */
105 | fun jiagu(apkFile: File, jiaGuApk: File): Boolean {
106 | // 检测需要加固的Apk是否存在
107 | require(apkFile.exists()) { "需要加固的apk文件: ${apkFile.absoluteFile}不存在!" }
108 | // 如果已经登录则不再进行登录
109 | if (!isInitConfig) {
110 | // 输出当前版本号
111 | println()
112 | println("**********************************************************************************")
113 | log("获取当前加固程序版本号")
114 | showVersionCmd.executeCmd()
115 | // 登录用户
116 | log("登录到360加固服务器")
117 | val result = loginCmd.executeCmd()
118 | if (!result.contains("success")) {
119 | require(!bashCmd.executeCmd().contains("\"errCode\":0")) {
120 | "用户登录失败,检查用户名和密码或请先用助手登录后再重新尝试!"
121 | }
122 | }
123 | // 导入签名信息
124 | log("导入签名信息")
125 | importSignCmd.executeCmd()
126 |
127 | // 导入的签名信息回显
128 | showSignCmd.executeCmd()
129 |
130 | // 配置可选服务:支持x86和奔溃日志记录
131 | log("配置可选服务")
132 | configCmd?.executeCmd()
133 |
134 | // 显示配置的可选服务
135 | showConfigCmd.executeCmd()
136 |
137 | isInitConfig = true
138 | println("**********************************************************************************")
139 | }
140 |
141 | // 开始加固
142 | log("开始对${apkFile.name}进行加固")
143 | val jiaGuCmd = "$bashCmd -jiagu $apkFile ${jiaGuApk.parent} -autosign"
144 | val ret = jiaGuCmd.executeCmd().contains("任务完成_已签名")
145 | log("加固后的路径为:${jiaGuApk.absolutePath}")
146 | return ret
147 | }
148 | }
--------------------------------------------------------------------------------
/plugin/src/main/kotlin/com/github/jxiaow/jiagu/JiaGuExtension.kt:
--------------------------------------------------------------------------------
1 | package com.github.jxiaow.jiagu
2 |
3 | import com.android.builder.model.SigningConfig
4 |
5 | /**
6 | * 在Gradle中配置的"jiagu"参数实例映射
7 | */
8 | open class JiaGuExtension(
9 | /**
10 | * 360加固可执行程序的根目录是根目录
11 | */
12 | var home: String? = null,
13 | /**
14 | * 360加固的用户名
15 | */
16 | var username: String? = null,
17 | /**
18 | * 360加固的登录密码
19 | */
20 | var password: String? = null,
21 | /**
22 | * apk的签名文件,默认自动获取android配置下的签名文件
23 | */
24 | var signingConfig: SigningConfig? = null,
25 | /**
26 | * 控制台输出编码方式,360加固在某些终端上输出信息会有乱码存在
27 | */
28 | var charsetName: String = "UTF-8"
29 | ) {
30 | /**
31 | * 需要加固的编译类型,如 release debug
32 | */
33 | private val buildTypes: HashSet = hashSetOf()
34 |
35 | /**
36 | * 加固的可选配置
37 | */
38 | private val configs: HashSet = hashSetOf()
39 |
40 |
41 | /**
42 | * 需要加固的编译类型,如 release debug
43 | */
44 | open fun buildTypes(vararg buildTypes: String): JiaGuExtension {
45 | val filter = buildTypes.asSequence().filterNot { it.isEmpty() || it.isBlank() }
46 | this.buildTypes.addAll(filter)
47 | return this
48 | }
49 |
50 | /**
51 | * 获取加固的编译类型
52 | */
53 | fun getBuildTypes(): Set = buildTypes
54 |
55 | /**
56 | * 添加加固的配置选项
57 | */
58 | open fun configs(vararg configs: String): JiaGuExtension {
59 | this.configs.addAll(configs)
60 | return this
61 | }
62 |
63 | /**
64 | * 判断当前的编译类型[buildType]是否需要加固
65 | */
66 | fun isJiaGuBuildType(buildType: String) = this.buildTypes.contains(buildType)
67 |
68 | /**
69 | * 组成编译命令,如 assembleRelease
70 | */
71 | val buildTypeAssemblePaths: Array
72 | @Suppress("DefaultLocale")
73 | get() = buildTypes.map { "assemble${it.capitalize()}" }.toTypedArray()
74 |
75 | /**
76 | * 获取加固的可选配置
77 | */
78 | val jiaGuConfig: String?
79 | get() {
80 | var result: String? = null
81 | configs.forEach { content -> result = result?.let { " $content" } ?: content }
82 | return result
83 | }
84 |
85 | /**
86 | * 进行加固参数校验
87 | */
88 | fun validateJiaGuParams() {
89 | // 参数校验
90 | requireNotNull(home) { "360加固程序根目录不能为空!" }
91 | requireNotNull(username) { "360加固用户名不能为空!" }
92 | requireNotNull(password) { "360加固密码不能为空!" }
93 | requireNotNull(signingConfig) { "无法找到Apk的签名文件不存在,请先配置release签名文件!" }
94 | }
95 | }
96 |
97 | /**
98 | * 获取加固所需要的签名信息
99 | */
100 | val SigningConfig?.sign: String
101 | get() {
102 | this ?: return ""
103 | return "$storeFile $storePassword $keyAlias $keyPassword"
104 | }
105 |
--------------------------------------------------------------------------------
/plugin/src/main/kotlin/com/github/jxiaow/jiagu/JiaGuPlugin.kt:
--------------------------------------------------------------------------------
1 | package com.github.jxiaow.jiagu
2 |
3 | import com.android.build.gradle.AppExtension
4 | import com.android.build.gradle.AppPlugin
5 | import org.gradle.api.GradleException
6 | import org.gradle.api.Plugin
7 | import org.gradle.api.Project
8 |
9 | /**
10 | * 360加固插件,该插件必须要运行在[Android]项目中
11 | */
12 | class JiaGuPlugin : Plugin {
13 |
14 | override fun apply(target: Project) {
15 | // 该插件必须运行于Android项目中
16 | if (!target.plugins.hasPlugin(AppPlugin::class.java)) {
17 | throw GradleException("无法在非android application插件中使用360加固")
18 | }
19 |
20 | // 创建配置"jiagu"
21 | target.extensions.create("jiagu", JiaGuExtension::class.java)
22 |
23 | // 脚本读取完毕后,进行加固任务创建
24 | target.afterEvaluate { project ->
25 | // 获取加固配置
26 | val jiaGuExtension = project.extensions.getByType(JiaGuExtension::class.java)
27 | val android = project.extensions.getByType(AppExtension::class.java)
28 | // 在执行第一个preXXxBuild任务时 进行参数校验,可有效的解决,apk打包完成后,参数出现问题
29 | if (jiaGuExtension.getBuildTypes().isEmpty()) {
30 | project.logger.warn("未配置加固编译类型, 无法启用加固任务!")
31 | return@afterEvaluate
32 | }
33 | // 创建 jiaGuApk 任务
34 | createJiaGuApkTask(project, jiaGuExtension, android)
35 | // 创建 jiaGuApkAssemblexxXX, 如: jiaGuApk xmh Release
36 | jiaGuExtension.getBuildTypes().forEach { type ->
37 | if (android.productFlavors.isNullOrEmpty()) {
38 | createSingleTask(project, type)
39 | } else {
40 | android.productFlavors.forEach { flavor ->
41 | createSingleTask(project, type, flavor.name)
42 | }
43 | }
44 | }
45 | }
46 | }
47 |
48 | /**
49 | * 根据编译类型名[typeName]和[flavorName]渠道名创建一个task
50 | * 在"preflavorNameTypeNameBuild"中注册参数校验
51 | */
52 | @Suppress("DefaultLocale")
53 | fun createSingleTask(project: Project, typeName: String, flavorName: String? = null) {
54 | project.tasks.create(
55 | "jiaGuApk${flavorName?.capitalize() ?: ""}${typeName.capitalize()}",
56 | JiaGuTask::class.java
57 | ) { jiaGuTask ->
58 | // 添加了渠道包时,就需要将渠道名拼接上
59 | project.tasks.find {
60 | it.name.contains("pre${flavorName?.capitalize() ?: ""}${typeName.capitalize()}Build")
61 | }?.let { task ->
62 | task.doFirst {
63 | log("在${it.name}任务中校验加固参数")
64 | jiaGuTask.validateJiaGuParams()
65 | }
66 | }
67 | }.dependsOn("assemble${flavorName?.capitalize() ?: ""}${typeName.capitalize()}")
68 | }
69 |
70 | @Suppress("DefaultLocale")
71 | private fun createJiaGuApkTask(
72 | project: Project,
73 | jiaGuExtension: JiaGuExtension,
74 | android: AppExtension
75 | ) {
76 | project.tasks.create("jiaGuApk", JiaGuTask::class.java) { jiaGuTask ->
77 | val buildType = jiaGuExtension.getBuildTypes().first().capitalize()
78 | // 添加了渠道包时,就需要将渠道名拼接上
79 | val taskName = if (!android.productFlavors.isNullOrEmpty()) {
80 | val flavor = android.productFlavors.first().name.capitalize()
81 | "pre${flavor}${buildType}Build"
82 | } else {
83 | "pre${buildType}Build"
84 | }
85 | project.tasks.find { it.name.contains(taskName) }?.let { task ->
86 | task.doFirst {
87 | log("在${it.name}任务中校验加固参数")
88 | jiaGuTask.validateJiaGuParams()
89 | }
90 | }
91 | }
92 | // jiaGuApk的任务需要依赖assembleXXX, 其中XXX 表示 "jiaGu"配置中的buildType值
93 | .dependsOn(jiaGuExtension.buildTypeAssemblePaths)
94 | }
95 | }
--------------------------------------------------------------------------------
/plugin/src/main/kotlin/com/github/jxiaow/jiagu/JiaGuTask.kt:
--------------------------------------------------------------------------------
1 | package com.github.jxiaow.jiagu
2 |
3 | import com.android.build.gradle.AppExtension
4 | import org.gradle.api.DefaultTask
5 | import org.gradle.api.GradleException
6 | import org.gradle.api.tasks.TaskAction
7 | import java.io.File
8 |
9 | /**
10 | * 360加固任务,此任务在"assembleXXX"后运行
11 | */
12 | open class JiaGuTask : DefaultTask() {
13 | // 加固命令实例
14 | private lateinit var cmds: JiaGuCmds
15 | private val jiaGuExtension: JiaGuExtension
16 | private val android: AppExtension
17 |
18 | // app版本号,此处的版本号去掉了中间的间隔".",如:2.16.1--> 2161
19 | private lateinit var appVersion: String
20 |
21 | // 缓存hex文件中的md5信息,用于比对是否已经存在加固文件
22 | private val hexMaps = mutableMapOf()
23 |
24 | init {
25 | group = "jiagu" // 将其归属于android组
26 | description = "在将Apk打包完成后,进行加固操作!" // 添加任务描述
27 | android = project.extensions.getByType(AppExtension::class.java)
28 | jiaGuExtension = project.extensions.getByType(JiaGuExtension::class.java)
29 | }
30 |
31 | /**
32 | * 执行Apk文件加固流程
33 | */
34 | @TaskAction
35 | fun action() {
36 | log("开始执行加固任务")
37 | appVersion = android.defaultConfig.versionName.replace(".", "")
38 | cmds = JiaGuCmds(jiaGuExtension)
39 | // 遍历得到符合编译类型的 applicationVariants
40 | val variants = android.applicationVariants.distinctBy { it.buildType.name }.asSequence()
41 | .filter { jiaGuExtension.isJiaGuBuildType(it.buildType.name) }.toList()
42 | if (variants.isEmpty()) {
43 | project.logger.warn("配置的加固类型,与编译类型不匹配!")
44 | return
45 | }
46 | // 遍历符合编译类型的applicationVariants,获取apk路径
47 | variants.forEach { variant ->
48 | // 判断当前是否是最后一个Apk生成任务
49 | variant.packageApplicationProvider.configure { packageApp ->
50 | // 获取apk的输出目录
51 | val parent = packageApp.outputDirectory.get().asFile.absolutePath
52 | executeTask(parent)
53 | }
54 | }
55 | }
56 |
57 | /**
58 | * 对[directory]目录下的apk进行加固
59 | * */
60 | private fun executeTask(directory: String) {
61 | val dir = File(directory)
62 | if (!dir.exists()) {
63 | log("${directory}不存在,跳过对该目录下的文件进行加固操作!")
64 | return
65 | }
66 | log("正在对目录${directory}下的Apk文件进行加固")
67 | // 先读取hex值
68 | val hexFile = File(directory, "hex")
69 | hexFile.existsOrCreate { readHexInfo(hexMaps, hexFile) }
70 | // 筛选出apk文件进行加固
71 | dir.listFiles { file ->
72 | !file.isDirectory && file.name.endsWith(".apk")
73 | }?.forEach { apkFile ->
74 | // 只对apk进行加固
75 | if (!execute(apkFile, hexFile)) { //每个apk如果加固失败,会重试一次
76 | if (!execute(apkFile, hexFile)) {
77 | throw GradleException("$apkFile 加固失败!")
78 | }
79 | }
80 | }
81 | }
82 |
83 |
84 | /**
85 | * 文件进行加固处理[apk] 需要加固的apk, [hexFile] 该buildType目录下对应的hex文件
86 | */
87 | private fun execute(apk: File, hexFile: File): Boolean {
88 | // 需要加固的apk的上一级目录
89 | val parentFile = apk.parentFile
90 | // apk加固后的输出目录
91 | val output =
92 | File("${parentFile.parent}${File.separator}jiagu${File.separator}${parentFile.name}")
93 | // 创建输出目录
94 | var mkdir = true
95 | if (!output.exists()) {
96 | mkdir = output.mkdirs()
97 | }
98 | if (!mkdir) {
99 | throw GradleException("创建目录失败!--> ${output.absolutePath}")
100 | }
101 | // 加固后apk名称,根据360加固后生成的文件拼接而来
102 | val prefix = apk.name.substringBefore(".apk")
103 | val jiaGuName = "${prefix}_${appVersion}_jiagu_sign.apk"
104 | val jiaGuApk = File(output, jiaGuName)
105 | // 计算md5比对,如果一致则不再进行加固
106 | val newMd5: String? = apk.calculateMD5()
107 | // 获取文件中的md5
108 | val oldMd5 = hexMaps[apk.name]
109 | log("name ${apk.name}, md5: $oldMd5 , newMd5: $newMd5")
110 | // 加固文件存在并且原始文件md5一致,则不再重新加固
111 | if (jiaGuApk.exists() && newMd5 == oldMd5) {
112 | log("检测到 ${jiaGuApk.absoluteFile} 已经存在,所以不再进行加固处理!")
113 | return true
114 | }
115 | // 开始加固处理
116 | val ret = cmds.jiagu(apk, jiaGuApk)
117 | // 加固成功后,回写文件
118 | if (ret) {
119 | newMd5?.let {
120 | writeHexFile(apk.name, it, hexFile)
121 | }
122 | }
123 | return ret
124 | }
125 |
126 | /**
127 | * 读取hex文件
128 | */
129 | private fun readHexInfo(hexMaps: MutableMap, hexFile: File) {
130 | val hexMap = hexFile.readLines().asSequence().mapNotNull {
131 | val info = it.split(":")
132 | if (info.size == 2) {
133 | info[0] to info[1]
134 | } else {
135 | null
136 | }
137 | }.toMap()
138 | hexMaps.putAll(hexMap)
139 | }
140 |
141 | /**
142 | * 回写hex文件
143 | */
144 | private fun writeHexFile(apkName: String, md5: String, hexFile: File) {
145 | tryCaching {
146 | hexMaps[apkName] = md5
147 | hexFile.writer().use { writer ->
148 | writer.write("")
149 | for (hexMap in hexMaps) {
150 | writer.append("${hexMap.key}:${hexMap.value}\n")
151 | }
152 | }
153 | }
154 | }
155 |
156 | /**
157 | * "jiagu"参数校验
158 | */
159 | fun validateJiaGuParams() {
160 | // 如果 "jiagu" 配置中未设置签名文件,那么直接获取release的签名文件信息
161 | jiaGuExtension.signingConfig = jiaGuExtension.signingConfig
162 | ?: android.signingConfigs.findByName("release")
163 | jiaGuExtension.validateJiaGuParams()
164 | }
165 | }
166 |
--------------------------------------------------------------------------------
/plugin/src/main/kotlin/com/github/jxiaow/jiagu/Utils.kt:
--------------------------------------------------------------------------------
1 | package com.github.jxiaow.jiagu
2 |
3 |
4 | import java.io.File
5 | import java.io.IOException
6 | import java.nio.charset.Charset
7 | import java.security.MessageDigest
8 | import java.util.*
9 | import javax.xml.bind.DatatypeConverter
10 |
11 | /**
12 | * 在控制台执行命令
13 | */
14 | @Throws(IOException::class)
15 | fun String.execute() = Runtime.getRuntime().exec(this)
16 |
17 | /**
18 | * 获取控制台文字信息
19 | */
20 | fun Process.text(charset: Charset): String {
21 | return this.inputStream.reader(charset).readText()
22 | }
23 |
24 | /**
25 | * 输出加固日志
26 | */
27 | fun log(msg: String?) {
28 | msg?.let { println("JiaGu >>> $it") }
29 | }
30 |
31 | /**
32 | * 获取编码字符,如果指定的编码有误,则返回null
33 | */
34 | fun forNameCharsetOrNull(charset: String): Charset? {
35 | return try {
36 | Charset.forName(charset)
37 | } catch (e: Exception) {
38 | null
39 | }
40 | }
41 |
42 |
43 | /**
44 | * 计算文件的md5,出错的话返回null
45 | */
46 | fun File.calculateMD5(): String? {
47 | return tryCaching {
48 | inputStream().use { input ->
49 | val md5Digest = MessageDigest.getInstance("MD5")
50 | val buffer = ByteArray(8192)
51 | var lenght: Int
52 | while (input.read(buffer).also { lenght = it } > 0) {
53 | md5Digest.update(buffer, 0, lenght)
54 | }
55 | val digest = md5Digest.digest()
56 | DatatypeConverter.printHexBinary(digest).toUpperCase(Locale.US)
57 | }
58 | }
59 | }
60 |
61 | /**
62 | * 忽略异常
63 | */
64 | inline fun tryCaching(block: () -> R): R? {
65 | return try {
66 | block.invoke()
67 | } catch (e: Exception) {
68 | null
69 | }
70 | }
71 |
72 | /**
73 | * 检测该文件是否存在,如果存在则会执行[block]方法,如果不存在则创建该文件
74 | */
75 | fun File.existsOrCreate(block: () -> Unit): File {
76 | if (exists()) {
77 | block.invoke()
78 | } else {
79 | parentFile.mkdirs()
80 | createNewFile()
81 | }
82 | return this
83 | }
--------------------------------------------------------------------------------
/plugin/src/main/resources/META-INF/gradle-plugins/com.github.jxiaow.jiagu.properties:
--------------------------------------------------------------------------------
1 | implementation-class=com.github.jxiaow.jiagu.JiaGuPlugin
2 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':plugin'
2 | include ':app'
3 | rootProject.name = "android-gradle-plugin"
--------------------------------------------------------------------------------