-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
배터리 최적화 팝업 표시중 애러
- Loading branch information
Showing
46 changed files
with
3,341 additions
and
4,131 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 |
---|---|---|
|
@@ -7,3 +7,5 @@ | |
/build | ||
/captures | ||
.externalNativeBuild | ||
|
||
.idea/ |
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,158 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.leejoonhee.hangulclockforandroid"> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> | ||
<uses-permission android:name="android.permission.GET_TASKS" /> | ||
<uses-permission android:name="android.permission.WAKE_LOCK" /> | ||
<uses-permission android:name="android.permission.SYSTEM_OVERLAY_WINDOW" /> | ||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> | ||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> | ||
<uses-permission android:name="android.permission.PHONE_STATE_STATE" /> | ||
<uses-permission | ||
android:name="android.permission.BIND_ACCESSIBILITY_SERVICE" | ||
tools:ignore="ProtectedPermissions" /> | ||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
|
||
<application | ||
android:name=".lockscreen.LockApplication" | ||
android:allowBackup="true" | ||
android:icon="@drawable/logo" | ||
android:label="HangulClock" | ||
android:roundIcon="@drawable/logo" | ||
android:supportsRtl="true" | ||
android:theme="@style/Theme.AppCompat.NoActionBar"> | ||
<activity | ||
android:name=".MainActivity" | ||
android:theme="@style/AppTheme"> | ||
<meta-data | ||
android:name="com.google.android.gms.version" | ||
android:value="@integer/google_play_services_version" /> | ||
|
||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name=".Service.SettingActivity" /> | ||
<activity android:name=".Service.HelpActivity" /> | ||
<activity android:name=".Service.SentenceActivity" /> | ||
<activity android:name=".Service.Weather.WeatherSetting" /> | ||
|
||
<receiver | ||
android:name=".widget.bigsizefull" | ||
android:label="4X4 BIG"> | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> | ||
<action android:name="com.tistory.code-soo.android.appwidget.CLICK" /> | ||
</intent-filter> | ||
|
||
<meta-data | ||
android:name="android.appwidget.provider" | ||
android:resource="@xml/bigsizefull_info" /> | ||
</receiver> | ||
<receiver | ||
android:name=".widget.bigsizesmall" | ||
android:label="4X4 SMALL"> | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> | ||
<action android:name="com.tistory.code-soo.android.appwidget.CLICK" /> | ||
</intent-filter> | ||
|
||
<meta-data | ||
android:name="android.appwidget.provider" | ||
android:resource="@xml/bigsizesmall_info" /> | ||
</receiver> | ||
<receiver | ||
android:name=".widget.bigsizemid" | ||
android:label="4X4 MID"> | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> | ||
<action android:name="com.tistory.code-soo.android.appwidget.CLICK" /> | ||
</intent-filter> | ||
|
||
<meta-data | ||
android:name="android.appwidget.provider" | ||
android:resource="@xml/bigsizemid_info" /> | ||
</receiver> | ||
<receiver | ||
android:name=".widget.midsizefull" | ||
android:label="3X3 BIG"> | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> | ||
<action android:name="com.tistory.code-soo.android.appwidget.CLICK" /> | ||
</intent-filter> | ||
|
||
<meta-data | ||
android:name="android.appwidget.provider" | ||
android:resource="@xml/midsize_info" /> | ||
</receiver> | ||
<receiver | ||
android:name=".widget.midsizesmall" | ||
android:label="3X3 SMALL"> | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> | ||
</intent-filter> | ||
|
||
<meta-data | ||
android:name="android.appwidget.provider" | ||
android:resource="@xml/midsizesmall" /> | ||
</receiver> | ||
|
||
<receiver android:name=".widget.fatversion" | ||
android:label="2X4 FAT"> | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> | ||
</intent-filter> | ||
|
||
<meta-data | ||
android:name="android.appwidget.provider" | ||
android:resource="@xml/fatversion_info" /> | ||
</receiver> | ||
|
||
<activity | ||
android:name=".lockscreen.LockScreenActivity" | ||
android:launchMode="singleInstance" | ||
android:showOnLockScreen="true" | ||
android:theme="@style/AppThemeNoAction" /> | ||
|
||
<activity | ||
android:name=".lockscreen.lockset" | ||
android:excludeFromRecents="true" | ||
android:launchMode="singleInstance" /> | ||
|
||
<service android:name=".lockscreen.LockscreenService" /> | ||
|
||
<service | ||
android:name=".lockscreen.LockWindowAccessibilityService" | ||
android:label="한글시계" | ||
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> | ||
|
||
<intent-filter> | ||
<action android:name="android.accessibilityservice.AccessibilityService" /> | ||
</intent-filter> | ||
|
||
<meta-data | ||
android:name="android.accessibilityservice" | ||
android:resource="@xml/accessibilityservice" /> | ||
</service> | ||
|
||
<activity | ||
android:name=".Service.PopupActivity" | ||
android:theme="@android:style/Theme.Dialog" /> | ||
|
||
<activity | ||
android:name="com.google.android.gms.ads.AdActivity" | ||
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" | ||
android:theme="@android:style/Theme.Translucent" /> | ||
|
||
|
||
</application> | ||
|
||
</manifest> |
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.