Skip to content

Commit

Permalink
한글시계 긴급 업데이트
Browse files Browse the repository at this point in the history
배터리 최적화 팝업 표시중 애러
  • Loading branch information
jlstdio committed Aug 17, 2020
1 parent 55dc20d commit 5a4f9d4
Show file tree
Hide file tree
Showing 46 changed files with 3,341 additions and 4,131 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@
/build
/captures
.externalNativeBuild

.idea/
Binary file removed .idea/caches/build_file_checksums.ser
Binary file not shown.
Binary file removed .idea/caches/gradle_models.ser
Binary file not shown.
4 changes: 0 additions & 4 deletions .idea/encodings.xml

This file was deleted.

21 changes: 0 additions & 21 deletions .idea/gradle.xml

This file was deleted.

34 changes: 0 additions & 34 deletions .idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/modules.xml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/runConfigurations.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

22 changes: 11 additions & 11 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
compileSdkVersion 28
defaultConfig {
applicationId "com.leejoonhee.hangulclockforandroid"
minSdkVersion 19
targetSdkVersion 26
versionCode 15
versionName "3.2.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
targetSdkVersion 28
versionCode 17//Last Modified : Dec. 22. 2019
versionName "3.2.5"//Last Modified : Dec. 22. 2019
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
Expand All @@ -23,15 +23,15 @@ android {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
testImplementation 'junit:junit:4.12'
implementation 'com.google.android.gms:play-services-ads:17.2.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.firebase:firebase-core:16.0.8'
implementation 'com.google.firebase:firebase-database:16.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'
implementation 'com.squareup.okhttp:okhttp:2.7.2'
implementation 'com.google.firebase:firebase-ads:11.8.0'

Expand Down
158 changes: 158 additions & 0 deletions app/src/main/AndroidManifest (1).xml
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>
27 changes: 15 additions & 12 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@
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" />
Expand Down Expand Up @@ -45,17 +42,30 @@
<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.WidgetProvider"
android:label="한글시계">

<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>

<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widgetprovider_info" />

</receiver>

<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
Expand All @@ -67,7 +77,6 @@
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
Expand All @@ -79,7 +88,6 @@
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
Expand All @@ -91,7 +99,6 @@
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
Expand Down Expand Up @@ -148,10 +155,6 @@
android:resource="@xml/accessibilityservice" />
</service>

<activity
android:name=".Service.PopupActivity"
android:theme="@android:style/Theme.Dialog" />

</application>

</manifest>
Loading

0 comments on commit 5a4f9d4

Please sign in to comment.