File tree Expand file tree Collapse file tree
net-multi-step/app/src/main
java/com/droidground/netmultistep Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
33 xmlns : tools =" http://schemas.android.com/tools" >
44
5+ <uses-permission android : name =" android.permission.INTERNET" />
56 <application
67 android : allowBackup =" true"
78 android : dataExtractionRules =" @xml/data_extraction_rules"
1112 android : roundIcon =" @mipmap/ic_launcher_round"
1213 android : supportsRtl =" true"
1314 android : theme =" @style/Theme.MultiStep"
15+ android : networkSecurityConfig =" @xml/network_security_config"
1416 tools : targetApi =" 31" >
1517 <activity
1618 android : name =" .StateMachineActivity"
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ class StateMachineActivity : AppCompatActivity() {
8080 if (ordinal != 1 ) {
8181 if (ordinal == 2 ) {
8282 setCurrentState(0 )
83- setText(flag )
83+ setText(" YOU MADE IT! " )
8484 lifecycleScope.launch {
8585 try {
8686 val url = uri.toString()
Original file line number Diff line number Diff line change 11<resources >
2- <string name =" app_name" >Multi Step</string >
2+ <string name =" app_name" >Net Multi Step</string >
33</resources >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <network-security-config >
3+ <base-config cleartextTrafficPermitted =" true" />
4+ </network-security-config >
You can’t perform that action at this time.
0 commit comments