-
Notifications
You must be signed in to change notification settings - Fork 37
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 #48 from SimpleAppProjects/develop
v1.15.2
- Loading branch information
Showing
136 changed files
with
4,373 additions
and
269 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package android.os; | ||
|
||
import androidx.annotation.DeprecatedSinceApi; | ||
import androidx.annotation.RequiresApi; | ||
|
||
public interface IPowerManager extends IInterface { | ||
|
||
@DeprecatedSinceApi(api = Build.VERSION_CODES.M) | ||
void wakeUp(long time); | ||
|
||
@RequiresApi(api = Build.VERSION_CODES.M) | ||
void wakeUp(long time, String reason, String opPackageName); | ||
|
||
void goToSleep(long time, int reason, int flags); | ||
|
||
abstract class Stub extends Binder implements IPowerManager { | ||
public static IPowerManager asInterface(IBinder obj) { | ||
throw new RuntimeException("Stub!"); | ||
} | ||
} | ||
} |
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,20 @@ | ||
package android.view; | ||
|
||
import android.os.Binder; | ||
import android.os.Bundle; | ||
import android.os.IBinder; | ||
import android.os.IInterface; | ||
|
||
public interface IWindowManager extends IInterface { | ||
|
||
/** | ||
* Lock the device immediately with the specified options (can be null). | ||
*/ | ||
void lockNow(Bundle options); | ||
|
||
abstract class Stub extends Binder implements IWindowManager { | ||
public static IWindowManager asInterface(IBinder obj) { | ||
throw new RuntimeException("Stub!"); | ||
} | ||
} | ||
} |
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
Oops, something went wrong.