-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix bug 'cannot found OkReflect in java class of Android
- Loading branch information
Showing
9 changed files
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ plugins { | |
} | ||
|
||
group 'com.github.zeshaoaaa' | ||
version '0.0.6' | ||
version '0.0.7' | ||
|
||
sourceCompatibility = 1.8 | ||
|
||
|
2 changes: 2 additions & 0 deletions
2
src/main/kotlin/MethodCall.kt → src/main/kotlin/okreflect/MethodCall.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
package okreflect | ||
|
||
class MethodCall(val methodName: String, val callWithInstance: Boolean, val args: Array<out Any>) |
4 changes: 3 additions & 1 deletion
4
src/main/kotlin/MethodGetter.kt → src/main/kotlin/okreflect/MethodGetter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
src/main/kotlin/OkCompileOptions.kt → ...main/kotlin/okreflect/OkCompileOptions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
package okreflect | ||
|
||
class OkCompileOptions { | ||
|
||
} |
2 changes: 2 additions & 0 deletions
2
src/main/kotlin/OkCompiler.kt → src/main/kotlin/okreflect/OkCompiler.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
package okreflect | ||
|
||
/** | ||
* This class responsible for compile string to Java file. | ||
*/ | ||
|
5 changes: 3 additions & 2 deletions
5
src/main/kotlin/OkReflect.kt → src/main/kotlin/okreflect/OkReflect.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
|
||
public class OkReflectTest { | ||
|
||
|
||
@Test | ||
public void testAccessible() { | ||
try { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters