Skip to content

Commit 7a56958

Browse files
authored
Merge pull request #18 from friederbluemle/update-project
Update project
2 parents 5f04c4f + 8a17a2f commit 7a56958

10 files changed

Lines changed: 93 additions & 155 deletions

File tree

.gitignore

Lines changed: 7 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,21 @@
1-
2-
# Created by https://www.gitignore.io/api/android,intellij,gradle
3-
4-
### Android ###
5-
# Built application files
6-
*.apk
7-
*.ap_
8-
9-
# Files for the Dalvik VM
10-
*.dex
11-
12-
# Java class files
13-
*.class
14-
15-
# Generated files
16-
bin/
17-
gen/
18-
191
# Gradle files
202
.gradle/
213
build/
224

235
# Local configuration file (sdk path, etc)
246
local.properties
257

26-
# Proguard folder generated by Eclipse
27-
proguard/
28-
29-
# Log Files
30-
*.log
31-
32-
# Android Studio Navigation editor temp files
8+
# Android Studio generated folders
339
.navigation/
34-
35-
# Android Studio captures folder
3610
captures/
11+
.externalNativeBuild
3712

38-
### Android Patch ###
39-
gen-external-apklibs
40-
41-
42-
### Intellij ###
43-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
44-
13+
# IntelliJ project files
4514
*.iml
46-
47-
## Directory-based project format:
4815
.idea/
49-
# if you remove the above rule, at least ignore the following:
50-
51-
# User-specific stuff:
52-
# .idea/workspace.xml
53-
# .idea/tasks.xml
54-
# .idea/dictionaries
55-
# .idea/shelf
56-
57-
# Sensitive or high-churn files:
58-
# .idea/dataSources.ids
59-
# .idea/dataSources.xml
60-
# .idea/sqlDataSources.xml
61-
# .idea/dynamic.xml
62-
# .idea/uiDesigner.xml
63-
64-
# Gradle:
65-
# .idea/gradle.xml
66-
# .idea/libraries
67-
68-
# Mongo Explorer plugin:
69-
# .idea/mongoSettings.xml
70-
71-
## File-based project format:
72-
*.ipr
73-
*.iws
74-
75-
## Plugin-specific files:
76-
77-
# IntelliJ
78-
/out/
79-
80-
# mpeltonen/sbt-idea plugin
81-
.idea_modules/
82-
83-
# JIRA plugin
84-
atlassian-ide-plugin.xml
85-
86-
# Crashlytics plugin (for Android Studio and IntelliJ)
87-
com_crashlytics_export_strings.xml
88-
crashlytics.properties
89-
crashlytics-build.properties
90-
fabric.properties
91-
92-
93-
### Gradle ###
94-
.gradle
95-
build/
96-
97-
# Ignore Gradle GUI config
98-
gradle-app.setting
99-
100-
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
101-
!gradle-wrapper.jar
102-
103-
# Cache of project
104-
.gradletasknamecache
10516

17+
# Misc
18+
.DS_Store
10619

20+
# Keystore files
21+
*.jks

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ android {
3737

3838
dependencies {
3939
testCompile 'junit:junit:4.12'
40-
}
40+
}

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

576 Bytes
Binary file not shown.

gradlew

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.

src/main/java/com/stericson/RootShell/RootShell.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
/*
1+
/*
22
* This file is part of the RootShell Project: http://code.google.com/p/RootShell/
3-
*
3+
*
44
* Copyright (c) 2014 Stephen Erickson, Chris Ravenscroft
5-
*
5+
*
66
* This code is dual-licensed under the terms of the Apache License Version 2.0 and
77
* the terms of the General Public License (GPL) Version 2.
88
* You may use this code according to either of these licenses as is most appropriate
99
* for your project on a case-by-case basis.
10-
*
10+
*
1111
* The terms of each license can be found in the root directory of this project's repository as well as at:
12-
*
12+
*
1313
* * http://www.apache.org/licenses/LICENSE-2.0
1414
* * http://www.gnu.org/licenses/gpl-2.0.txt
15-
*
15+
*
1616
* Unless required by applicable law or agreed to in writing, software
1717
* distributed under these Licenses is distributed on an "AS IS" BASIS,
1818
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/stericson/RootShell/exceptions/RootDeniedException.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
/*
1+
/*
22
* This file is part of the RootShell Project: https://github.com/Stericson/RootShell
3-
*
3+
*
44
* Copyright (c) 2014 Stephen Erickson, Chris Ravenscroft
5-
*
5+
*
66
* This code is dual-licensed under the terms of the Apache License Version 2.0 and
77
* the terms of the General Public License (GPL) Version 2.
88
* You may use this code according to either of these licenses as is most appropriate
99
* for your project on a case-by-case basis.
10-
*
10+
*
1111
* The terms of each license can be found in the root directory of this project's repository as well as at:
12-
*
12+
*
1313
* * http://www.apache.org/licenses/LICENSE-2.0
1414
* * http://www.gnu.org/licenses/gpl-2.0.txt
15-
*
15+
*
1616
* Unless required by applicable law or agreed to in writing, software
1717
* distributed under these Licenses is distributed on an "AS IS" BASIS,
1818
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/stericson/RootShell/execution/Command.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
/*
1+
/*
22
* This file is part of the RootShell Project: http://code.google.com/p/RootShell/
3-
*
3+
*
44
* Copyright (c) 2014 Stephen Erickson, Chris Ravenscroft
5-
*
5+
*
66
* This code is dual-licensed under the terms of the Apache License Version 2.0 and
77
* the terms of the General Public License (GPL) Version 2.
88
* You may use this code according to either of these licenses as is most appropriate
99
* for your project on a case-by-case basis.
10-
*
10+
*
1111
* The terms of each license can be found in the root directory of this project's repository as well as at:
12-
*
12+
*
1313
* * http://www.apache.org/licenses/LICENSE-2.0
1414
* * http://www.gnu.org/licenses/gpl-2.0.txt
15-
*
15+
*
1616
* Unless required by applicable law or agreed to in writing, software
1717
* distributed under these Licenses is distributed on an "AS IS" BASIS,
1818
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

src/main/java/com/stericson/RootShell/execution/Shell.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
/*
1+
/*
22
* This file is part of the RootShell Project: http://code.google.com/p/RootShell/
3-
*
3+
*
44
* Copyright (c) 2014 Stephen Erickson, Chris Ravenscroft
5-
*
5+
*
66
* This code is dual-licensed under the terms of the Apache License Version 2.0 and
77
* the terms of the General Public License (GPL) Version 2.
88
* You may use this code according to either of these licenses as is most appropriate
99
* for your project on a case-by-case basis.
10-
*
10+
*
1111
* The terms of each license can be found in the root directory of this project's repository as well as at:
12-
*
12+
*
1313
* * http://www.apache.org/licenses/LICENSE-2.0
1414
* * http://www.gnu.org/licenses/gpl-2.0.txt
15-
*
15+
*
1616
* Unless required by applicable law or agreed to in writing, software
1717
* distributed under these Licenses is distributed on an "AS IS" BASIS,
1818
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

0 commit comments

Comments
 (0)