Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
cc7e74ca
Commit
cc7e74ca
authored
Mar 25, 2018
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup build.gradle
parent
e8a44646
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
9 deletions
+13
-9
app
app
+1
-1
build.gradle
build.gradle
+7
-0
build.gradle
native/build.gradle
+2
-1
build.gradle
snet/build.gradle
+3
-7
No files found.
app
@
52d478df
Subproject commit
0c782edf2114621056093406d808d03bdfed1a9f
Subproject commit
52d478df1a687070680f057308f3d66bff9f1623
build.gradle
View file @
cc7e74ca
...
...
@@ -19,9 +19,16 @@ allprojects {
repositories
{
google
()
jcenter
()
maven
{
url
"https://jitpack.io"
}
}
}
ext
{
compileSdkVersion
=
27
buildToolsVersion
=
"27.0.3"
supportLibVersion
=
"27.1.0"
}
task
clean
(
type:
Delete
)
{
delete
rootProject
.
buildDir
}
native/build.gradle
View file @
cc7e74ca
apply
plugin:
'com.android.library'
android
{
compileSdkVersion
27
compileSdkVersion
rootProject
.
ext
.
compileSdkVersion
buildToolsVersion
rootProject
.
ext
.
buildToolsVersion
externalNativeBuild
{
ndkBuild
{
...
...
snet/build.gradle
View file @
cc7e74ca
apply
plugin:
'com.android.application'
android
{
compileSdkVersion
27
buildToolsVersion
"27.0.3"
compileSdkVersion
rootProject
.
ext
.
compileSdkVersion
buildToolsVersion
rootProject
.
ext
.
buildToolsVersion
defaultConfig
{
applicationId
"com.topjohnwu.snet"
minSdkVersion
21
targetSdkVersion
27
targetSdkVersion
rootProject
.
ext
.
compileSdkVersion
versionCode
1
versionName
"1.0"
}
...
...
@@ -20,10 +20,6 @@ android {
}
}
repositories
{
google
()
}
dependencies
{
implementation
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
implementation
'com.google.android.gms:play-services-safetynet:7.0.0'
/* The oldest version */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment