Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix for Example app and Ble Service #10

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b076ee6
minSdkVersion is updated to 19 for compatibility reasons
omert08 Mar 15, 2021
2f5a914
If BT is already on at Android devices, it hangs at start() function,…
omert08 Mar 15, 2021
dd530a3
peripheral parameter is passed to WiFiScreen
omert08 Mar 15, 2021
5650674
peripheral select code is added before provisioning
omert08 Mar 15, 2021
dda3cec
WifiEventLoad is edited for peripheral parameter pass
omert08 Mar 15, 2021
91e3562
peripheral is passed to WiFiBloc
omert08 Mar 15, 2021
6e1ccd0
TransPortHTTP class constructor is done
omert08 Mar 20, 2021
8e30a64
overrides are added
omert08 Mar 20, 2021
1af03c1
Transporthttp constuctor is edited
omert08 Mar 26, 2021
9f2db57
transport http is exported
omert08 Mar 26, 2021
7ef305e
softap events are added
omert08 Mar 26, 2021
7bc00c2
wifibloc is isolated for ble prov.
omert08 Mar 26, 2021
5daf74c
WiFiBlocSoftAP is added
omert08 Mar 26, 2021
217f6f3
load event is edited
omert08 Mar 26, 2021
1b27056
dart:html is removed
omert08 Mar 26, 2021
70d45cc
softapbloc is created
omert08 Mar 26, 2021
b2c5689
softap initial events are added
omert08 Mar 26, 2021
951abf9
soft ap screen code is created
omert08 Mar 26, 2021
62587ed
Softap state initial states are created
omert08 Mar 26, 2021
7452170
softap screen is created
omert08 Mar 26, 2021
795e648
Android manifest is edited for http requests and internet usage
omert08 Mar 27, 2021
3ee3f32
no important updates
omert08 Mar 27, 2021
081eb81
It works with softap provisioning on Android untill EstablishSession …
omert08 Mar 27, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Android manifest is edited for http requests and internet usage
  • Loading branch information
omert08 committed Mar 27, 2021
commit 795e648cab0b764c4e3734d2a0c5f65c36356f90
3 changes: 3 additions & 0 deletions example/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -5,9 +5,11 @@
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name="io.flutter.app.FlutterApplication"
android:label="esp_provisioning_example"
android:usesCleartextTraffic="true"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
@@ -44,4 +46,5 @@
android:name="flutterEmbedding"
android:value="2" />
</application>

</manifest>