Skip to content

Commit 1025787

Browse files
committed
Merge branch 'master' of github.com:Stericson/RootTools
2 parents 455d5c2 + 5c8e66b commit 1025787

21 files changed

Lines changed: 154 additions & 232 deletions

File tree

.gitignore

Lines changed: 20 additions & 121 deletions
Original file line numberDiff line numberDiff line change
@@ -1,122 +1,21 @@
1-
# Created by https://www.gitignore.io/api/android,java,intellij
1+
# Gradle files
2+
.gradle/
3+
build/
24

3-
*.iml
4-
5-
### Android ###
6-
# Built application files
7-
*.apk
8-
*.ap_
9-
10-
# Files for the Dalvik VM
11-
*.dex
12-
13-
# Java class files
14-
*.class
15-
16-
# Generated files
17-
bin/
18-
gen/
19-
20-
# Gradle files
21-
.gradle/
22-
build/
23-
24-
# Local configuration file (sdk path, etc)
25-
local.properties
26-
27-
# Proguard folder generated by Eclipse
28-
proguard/
29-
30-
xactmobile/class_files.txt
31-
xactmobile/mapping.txt
32-
xactmobile/seeds.txt
33-
34-
# Log Files
35-
*.log
36-
37-
# Android Studio Navigation editor temp files
38-
.navigation/
39-
40-
### Android Patch ###
41-
gen-external-apklibs
42-
43-
44-
### Java ###
45-
*.class
46-
47-
# Mobile Tools for Java (J2ME)
48-
.mtj.tmp/
49-
50-
# Package Files #
51-
#*.jar
52-
*.war
53-
*.ear
54-
55-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
56-
hs_err_pid*
57-
58-
59-
### Intellij ###
60-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
61-
62-
*.iml
63-
64-
## Directory-based project format:
65-
.idea/
66-
# if you remove the above rule, at least ignore the following:
67-
68-
# User-specific stuff:
69-
.idea/workspace.xml
70-
.idea/tasks.xml
71-
.idea/dictionaries
72-
73-
# Sensitive or high-churn files:
74-
.idea/dataSources.ids
75-
.idea/dataSources.xml
76-
.idea/sqlDataSources.xml
77-
.idea/dynamic.xml
78-
.idea/uiDesigner.xml
79-
80-
# Gradle:
81-
.idea/gradle.xml
82-
.idea/libraries
83-
84-
# Mongo Explorer plugin:
85-
.idea/mongoSettings.xml
86-
87-
## File-based project format:
88-
*.ipr
89-
*.iws
90-
91-
## Plugin-specific files:
92-
93-
# IntelliJ
94-
/out/
95-
96-
# mpeltonen/sbt-idea plugin
97-
.idea_modules/
98-
99-
# JIRA plugin
100-
atlassian-ide-plugin.xml
101-
102-
# Crashlytics plugin (for Android Studio and IntelliJ)
103-
com_crashlytics_export_strings.xml
104-
crashlytics.properties
105-
crashlytics-build.properties
106-
107-
xactmobile/.DS_Store~64be78fe3602626c61b52bcbfd09e09a6107b50a
108-
xactmobile/.DS_Store~HEAD
109-
oslab-viewpager/._.DS_Store
110-
oslab-viewpager/src/main/.DS_Store
111-
oslab-viewpager/src/main/._.DS_Store
112-
oslab-viewpager/src/main/res/.DS_Store
113-
oslab-viewpager/src/main/res/._.DS_Store
114-
oslab-viewpager/.gitignore
115-
oslab-materialdesign/.DS_Store
116-
oslab-materialdesign/._.DS_Store
117-
oslab-materialdesign/src/.DS_Store
118-
oslab-materialdesign/src/._.DS_Store
119-
oslab-materialdesign/src/main/.DS_Store
120-
oslab-materialdesign/src/main/._.DS_Store
121-
oslab-materialdesign/src/main/res/.DS_Store
122-
oslab-materialdesign/src/main/res/._.DS_Store
5+
# Local configuration file (sdk path, etc)
6+
local.properties
7+
8+
# Android Studio generated folders
9+
.navigation/
10+
captures/
11+
.externalNativeBuild
12+
13+
# IntelliJ project files
14+
*.iml
15+
.idea/
16+
17+
# Misc
18+
.DS_Store
19+
20+
# Keystore files
21+
*.jks

RootShell/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configurations.create("default")
2-
artifacts.add("default", file('RootShell.aar'))
2+
artifacts.add("default", file('RootShell.aar'))

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:1.5.0'
12-
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
11+
classpath 'com.android.tools.build:gradle:2.3.2'
12+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1313
}
1414
}
1515

@@ -20,12 +20,12 @@ repositories {
2020
apply plugin: 'com.android.library'
2121

2222
android {
23-
compileSdkVersion 23
24-
buildToolsVersion "23.0.2"
23+
compileSdkVersion 25
24+
buildToolsVersion "25.0.3"
2525

2626
defaultConfig {
2727
minSdkVersion 11
28-
targetSdkVersion 23
28+
targetSdkVersion 25
2929
versionName project.version
3030
}
3131

@@ -38,5 +38,5 @@ android {
3838
dependencies {
3939
compile project(':RootShell')
4040
testCompile 'junit:junit:4.12'
41-
compile 'com.android.support:appcompat-v7:23.1.1'
42-
}
41+
compile 'com.android.support:appcompat-v7:25.3.1'
42+
}

gradle.properties

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Project-wide Gradle settings.
2+
3+
# IDE (e.g. Android Studio) users:
4+
# Gradle settings configured through the IDE *will override*
5+
# any settings specified in this file.
6+
7+
# For more details on how to configure your build environment visit
8+
# http://www.gradle.org/docs/current/userguide/build_environment.html
9+
10+
# Specifies the JVM arguments used for the daemon process.
11+
# The setting is particularly useful for tweaking memory settings.
12+
org.gradle.jvmargs=-Xmx1536m
13+
14+
# When configured, Gradle will run in incubating parallel mode.
15+
# This option should only be used with decoupled projects. More details, visit
16+
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17+
# org.gradle.parallel=true

gradle/wrapper/gradle-wrapper.jar

575 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Oct 21 11:34:03 PDT 2015
1+
#Tue May 02 15:22:41 SGT 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip

gradlew

100644100755
Lines changed: 40 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 4 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Add project specific ProGuard rules here.
22
# By default, the flags in this file are appended to flags specified
3-
# in /Users/demollol/Library/Android/sdk/tools/proguard/proguard-android.txt
3+
# in ${sdk.dir}/tools/proguard/proguard-android.txt
44
# You can edit the include path and order by changing the proguardFiles
55
# directive in build.gradle.
66
#

src/androidTest/java/com/example/RootTools/ApplicationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ public class ApplicationTest extends ApplicationTestCase<Application> {
1010
public ApplicationTest() {
1111
super(Application.class);
1212
}
13-
}
13+
}

0 commit comments

Comments
 (0)