-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #619 from Mahmud0808/beta
Merge beta into stable
- Loading branch information
Showing
2,449 changed files
with
84,055 additions
and
31,137 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
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
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
6 changes: 6 additions & 0 deletions
6
app/src/main/aidl/com/drdisagree/iconify/IExtractSubjectCallback.aidl
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.drdisagree.iconify; | ||
|
||
interface IExtractSubjectCallback { | ||
void onStart(String message); | ||
void onResult(boolean success, String message); | ||
} |
10 changes: 10 additions & 0 deletions
10
app/src/main/aidl/com/drdisagree/iconify/IRootProviderProxy.aidl
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.drdisagree.iconify; | ||
|
||
import com.drdisagree.iconify.IExtractSubjectCallback; | ||
|
||
interface IRootProviderProxy { | ||
String[] runCommand(String command); | ||
void extractSubject(in Bitmap input, String resultPath, IExtractSubjectCallback callback); | ||
void enableOverlay(in String packageName); | ||
void disableOverlay(in String packageName); | ||
} |
Oops, something went wrong.