Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit e4af4cd

Browse files
author
xuefy
committed
Merge pull request #1 from rovo89/master
up to date
2 parents 9f873ee + afcc3e1 commit e4af4cd

107 files changed

Lines changed: 3889 additions & 32885 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.classpath

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
<classpath>
33
<classpathentry kind="src" path="src"/>
44
<classpathentry kind="src" path="gen"/>
5-
<classpathentry kind="src" path="lib/apache-commons-lang"/>
5+
<classpathentry excluding="*.txt" kind="src" path="lib/apache-commons-lang"/>
66
<classpathentry kind="lib" path="lib/full_framework_15.jar" sourcepath="lib/sdk_sources_15">
77
<accessrules>
88
<accessrule kind="nonaccessible" pattern="android/test/**"/>
99
</accessrules>
1010
</classpathentry>
1111
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
12-
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
12+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
13+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
1314
<classpathentry kind="output" path="bin/classes"/>
1415
</classpath>

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.java text
2+
*.xml text

.project

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,10 @@
3636
<type>2</type>
3737
<locationURI>ANDROID_SDK/sources/android-15</locationURI>
3838
</link>
39+
<link>
40+
<name>src/NOTICE.txt</name>
41+
<type>1</type>
42+
<locationURI>PROJECT_LOC/NOTICE.txt</locationURI>
43+
</link>
3944
</linkedResources>
4045
</projectDescription>

NOTICE.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
LICENSE FOR THE MAIN PRODUCT
2+
============================
3+
4+
Copyright 2013 rovo89, Tungstwenty
5+
6+
Licensed under the Apache License, Version 2.0 (the "License");
7+
you may not use this file except in compliance with the License.
8+
You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations under the License.
17+
18+
19+
20+
INCLUDED LIBRARIES
21+
==================
22+
23+
This product includes slightly modified code of the "Apache Commons Lang"
24+
library. See lib/apache-commons-lang for details.
25+
Here is a copy of the NOTICE.txt from that directory:
26+
-------------------------------------------------------------------------
27+
Apache Commons Lang
28+
Copyright 2001-2011 The Apache Software Foundation
29+
30+
This product includes software developed by
31+
The Apache Software Foundation (http://www.apache.org/).
32+
33+
This product includes software from the Spring Framework,
34+
under the Apache License 2.0 (see: StringUtils.containsWhitespace())
35+
-------------------------------------------------------------------------

assets/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.4
1+
54

install.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
cd /d %~dp0
22
dir bin\XposedBridge.apk
3-
adb push bin\XposedBridge.apk /data/xposed/XposedBridge.jar.newversion
4-
pause
3+
adb push bin\XposedBridge.apk /data/data/de.robv.android.xposed.installer/bin/XposedBridge.jar.newversion
4+
pause

jarexport.jardesc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="WINDOWS-1252" standalone="no"?>
22
<jardesc>
3-
<jar path="XposedLibrary/XposedBridgeApi.jar"/>
3+
<jar path="XposedBridgeApi.jar"/>
44
<options buildIfNeeded="true" compress="true" descriptionLocation="/XposedBridge/jarexport.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="false" overwrite="true" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
55
<storedRefactorings deprecationInfo="true" structuralOnly="false"/>
66
<selectedProjects/>

lib/apache-commons-lang/MODIFICATIONS.txt

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,42 @@ as downloaded from http://commons.apache.org/lang/download_lang.cgi, except for
33
these modifications:
44
- Class MemberUtils changed to public
55
- Method compareParameterTypes in MemberUtils changed to public
6-
- Prefix "external." for packages to avoid conflicts with other apps
6+
- Prefix "external." for packages to avoid conflicts with other apps
7+
- Removed unused sub-packages for smaller file size:
8+
concurrent/
9+
event/
10+
math/
11+
text/
12+
time/
13+
- Removed unused classes for smaller file size:
14+
AnnotationUtils.java
15+
BitField.java
16+
BooleanUtils.java
17+
CharEncoding.java
18+
CharRange.java
19+
CharSet.java
20+
CharSetUtils.java
21+
EnumUtils.java
22+
LocaleUtils.java
23+
RandomStringUtils.java
24+
Range.java
25+
SerializationException.java
26+
SerializationUtils.java
27+
StringEscapeUtils.java
28+
builder/StandardToStringStyle.java
29+
exception/ContextedException.java
30+
exception/ContextedRuntimeException.java
31+
exception/DefaultExceptionContext.java
32+
exception/ExceptionContext.java
33+
exception/ExceptionUtils.java
34+
mutable/MutableBoolean.java
35+
mutable/MutableByte.java
36+
mutable/MutableDouble.java
37+
mutable/MutableFloat.java
38+
mutable/MutableLong.java
39+
mutable/MutableObject.java
40+
mutable/MutableShort.java
41+
reflect/ConstructorUtils.java
42+
reflect/FieldUtils.java
43+
reflect/TypeUtils.java
44+
tuple/MutablePair.java

0 commit comments

Comments
 (0)