Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
huangzhicong
/
SmartCanteen
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1ed83019
authored
Mar 09, 2020
by
pye52
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'new_master' into new_for_phone
parents
d07c1b13
f7a10807
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
1 deletions
+33
-1
app/src/main/AndroidManifest.xml
+13
-0
app/src/main/java/com/bgycc/smartcanteen/broadcast/BootBroadcast.java
+18
-0
app/src/main/java/com/bgycc/smartcanteen/command/UpdateCommandHandler.java
+2
-1
app/src/main/java/com/bgycc/smartcanteen/utils/DangerousUtils.java
+0
-0
No files found.
app/src/main/AndroidManifest.xml
View file @
1ed83019
...
...
@@ -6,6 +6,7 @@
<uses-permission
android:name=
"android.permission.RECEIVE_BOOT_COMPLETED"
/>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.WRITE_SETTINGS"
/>
<uses-permission
android:name=
"android.permission.INSTALL_PACKAGES"
/>
<uses-permission
android:name=
"android.permission.CHANGE_NETWORK_STATE"
/>
<uses-permission
android:name=
"android.permission.ACCESS_NETWORK_STATE"
/>
<uses-permission
android:name=
"android.permission.ACCESS_WIFI_STATE"
/>
...
...
@@ -22,6 +23,7 @@
android:name=
".RootApp"
android:theme=
"@style/AppTheme"
>
<activity
android:name=
".MainActivity"
android:launchMode=
"singleInstance"
android:screenOrientation=
"landscape"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
...
...
@@ -39,6 +41,16 @@
<data
android:scheme=
"canteen"
/>
</intent-filter>
</activity>
<receiver
android:name=
".broadcast.BootBroadcast"
android:enabled=
"true"
android:exported=
"true"
android:permission=
"android.permission.RECEIVE_BOOT_COMPLETED"
>
<intent-filter
android:priority=
"1000"
>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<action
android:name=
"android.intent.action.BOOT_COMPLETED"
/>
</intent-filter>
</receiver>
</application>
</manifest>
\ No newline at end of file
app/src/main/java/com/bgycc/smartcanteen/broadcast/BootBroadcast.java
0 → 100644
View file @
1ed83019
package
com
.
bgycc
.
smartcanteen
.
broadcast
;
import
android.annotation.SuppressLint
;
import
android.content.BroadcastReceiver
;
import
android.content.Context
;
import
android.content.Intent
;
import
com.bgycc.smartcanteen.MainActivity
;
public
class
BootBroadcast
extends
BroadcastReceiver
{
@SuppressLint
(
"UnsafeProtectedBroadcastReceiver"
)
@Override
public
void
onReceive
(
Context
context
,
Intent
intent
)
{
Intent
scIntent
=
new
Intent
(
context
,
MainActivity
.
class
);
scIntent
.
addFlags
(
Intent
.
FLAG_ACTIVITY_NEW_TASK
);
context
.
startActivity
(
scIntent
);
}
}
app/src/main/java/com/bgycc/smartcanteen/command/UpdateCommandHandler.java
View file @
1ed83019
...
...
@@ -5,6 +5,7 @@ import com.bgycc.smartcanteen.api.SCRetrofit;
import
com.bgycc.smartcanteen.entity.Command
;
import
com.bgycc.smartcanteen.entity.CommandResponse
;
import
com.bgycc.smartcanteen.entity.CommandUpdate
;
import
com.bgycc.smartcanteen.utils.DangerousUtils
;
import
com.blankj.utilcode.util.AppUtils
;
import
com.blankj.utilcode.util.FileIOUtils
;
import
com.blankj.utilcode.util.FileUtils
;
...
...
@@ -68,7 +69,7 @@ public class UpdateCommandHandler extends CommandHandler {
(
info
.
getPackageName
().
equals
(
BuildConfig
.
APPLICATION_ID
)
&&
info
.
getVersionCode
()
<
BuildConfig
.
VERSION_CODE
))
{
return
failed
(
"不允许安装低版本"
);
}
else
{
AppUtils
.
installApp
(
updateApk
);
DangerousUtils
.
installAppSilent
(
updateApk
);
return
success
(
"安装更新包"
);
}
}
...
...
app/src/main/java/com/bgycc/smartcanteen/utils/DangerousUtils.java
0 → 100644
View file @
1ed83019
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment