mirror of
https://github.com/hackku21/nearby_connections.git
synced 2024-10-27 19:14:01 +00:00
added file example, updated readme
This commit is contained in:
parent
dcd86e885f
commit
cd7e9bc63d
@ -1,6 +1,7 @@
|
|||||||
# nearby_connections
|
# nearby_connections
|
||||||
|
|
||||||
An **android** flutter plugin for the Nearby Connections API
|
An **android** flutter plugin for the Nearby Connections API
|
||||||
|
Currently supports Bytes and Files.
|
||||||
|
|
||||||
[![pub package](https://img.shields.io/pub/v/nearby_connections.svg)](https://pub.dartlang.org/packages/nearby_connections)
|
[![pub package](https://img.shields.io/pub/v/nearby_connections.svg)](https://pub.dartlang.org/packages/nearby_connections)
|
||||||
|
|
||||||
@ -27,8 +28,11 @@ Add these to AndroidManifest.xml
|
|||||||
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||||
|
|
||||||
|
<!-- Optional: only required for FILE payloads -->
|
||||||
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
```
|
```
|
||||||
Since ACCESS_FINE_LOCATION is considered to be dangerous system permissions, in addition to adding them to your manifest, you must request these permissions at runtime.
|
Since ACCESS_FINE_LOCATION and READ_EXTERNAL_STORAGE is considered to be dangerous system permissions, in addition to adding them to your manifest, you must request these permissions at runtime.
|
||||||
|
|
||||||
##### As a convinience the library provides methods to check and request location permissions
|
##### As a convinience the library provides methods to check and request location permissions
|
||||||
```java
|
```java
|
||||||
@ -41,7 +45,7 @@ Nearby().askPermission()
|
|||||||
|
|
||||||
## Work Flow
|
## Work Flow
|
||||||
|
|
||||||
The work flow is similar to the [android nearby connections library](https://developers.google.com/nearby/connections/overviewoverview)
|
The work flow is similar to the [Android Nearby Connections library](https://developers.google.com/nearby/connections/overview)
|
||||||
|
|
||||||
### Advertise for connection
|
### Advertise for connection
|
||||||
```dart
|
```dart
|
||||||
|
@ -35,32 +35,40 @@ class Body extends StatefulWidget {
|
|||||||
class _MyBodyState extends State<Body> {
|
class _MyBodyState extends State<Body> {
|
||||||
final String userName = Random().nextInt(1000).toString();
|
final String userName = Random().nextInt(1000).toString();
|
||||||
final Strategy strategy = Strategy.P2P_STAR;
|
final Strategy strategy = Strategy.P2P_STAR;
|
||||||
String cId = "0";
|
String cId = "0"; //currently connected device ID
|
||||||
|
File tempFile; //stores the file being transferred
|
||||||
|
Map<int, String> map = Map();
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Center(
|
return Center(
|
||||||
child: Column(
|
child: Column(
|
||||||
|
children: <Widget>[
|
||||||
|
Wrap(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
RaisedButton(
|
RaisedButton(
|
||||||
child: Text("checkPermission"),
|
child: Text("checkPermission"),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
if (await Nearby().checkPermissions()) {
|
if (await Nearby().checkPermissions()) {
|
||||||
Scaffold.of(context)
|
Scaffold.of(context).showSnackBar(SnackBar(
|
||||||
.showSnackBar(SnackBar(content: Text("yes")));
|
content: Text("Location permissions granted :)")));
|
||||||
} else {
|
} else {
|
||||||
Scaffold.of(context)
|
Scaffold.of(context).showSnackBar(SnackBar(
|
||||||
.showSnackBar(SnackBar(content: Text("No")));
|
content: Text("Location permissions not granted :(")));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
RaisedButton(
|
RaisedButton(
|
||||||
child: Text("askPermission(location)"),
|
child: Text("askPermission"),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
await Nearby().askPermission();
|
await Nearby().askPermission();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
Text("UserName: " + userName),
|
],
|
||||||
|
),
|
||||||
|
Text("User Name: " + userName),
|
||||||
|
Wrap(
|
||||||
|
children: <Widget>[
|
||||||
RaisedButton(
|
RaisedButton(
|
||||||
child: Text("Start Advertising"),
|
child: Text("Start Advertising"),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
@ -75,7 +83,7 @@ class _MyBodyState extends State<Body> {
|
|||||||
showSnackbar(status);
|
showSnackbar(status);
|
||||||
},
|
},
|
||||||
onDisconnected: (id) {
|
onDisconnected: (id) {
|
||||||
showSnackbar(id);
|
showSnackbar("Disconnected: "+id);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
showSnackbar(a);
|
showSnackbar(a);
|
||||||
@ -90,6 +98,10 @@ class _MyBodyState extends State<Body> {
|
|||||||
await Nearby().stopAdvertising();
|
await Nearby().stopAdvertising();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Wrap(
|
||||||
|
children: <Widget>[
|
||||||
RaisedButton(
|
RaisedButton(
|
||||||
child: Text("Start Discovery"),
|
child: Text("Start Discovery"),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
@ -149,6 +161,8 @@ class _MyBodyState extends State<Body> {
|
|||||||
await Nearby().stopDiscovery();
|
await Nearby().stopDiscovery();
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
RaisedButton(
|
RaisedButton(
|
||||||
child: Text("Stop All Endpoints"),
|
child: Text("Stop All Endpoints"),
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
@ -171,8 +185,12 @@ class _MyBodyState extends State<Body> {
|
|||||||
|
|
||||||
if (file == null) return;
|
if (file == null) return;
|
||||||
|
|
||||||
Nearby().sendFilePayload(cId, file.path);
|
int payloadId = await Nearby().sendFilePayload(cId, file.path);
|
||||||
showSnackbar("Sending file to $cId");
|
showSnackbar("Sending file to $cId");
|
||||||
|
Nearby().sendBytesPayload(
|
||||||
|
cId,
|
||||||
|
Uint8List.fromList(
|
||||||
|
"$payloadId:${file.path.split('/').last}".codeUnits));
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -205,12 +223,32 @@ class _MyBodyState extends State<Body> {
|
|||||||
cId = id;
|
cId = id;
|
||||||
Nearby().acceptConnection(
|
Nearby().acceptConnection(
|
||||||
id,
|
id,
|
||||||
onPayLoadRecieved: (endid, payload) {
|
onPayLoadRecieved: (endid, payload) async {
|
||||||
if (payload.type == PayloadType.BYTES) {
|
if (payload.type == PayloadType.BYTES) {
|
||||||
showSnackbar(
|
String str = String.fromCharCodes(payload.bytes);
|
||||||
endid + ": " + String.fromCharCodes(payload.bytes));
|
showSnackbar(endid + ": " + str);
|
||||||
|
|
||||||
|
if (str.contains(':')) {
|
||||||
|
// used for file payload as file payload is mapped as
|
||||||
|
// payloadId:filename
|
||||||
|
int payloadId = int.parse(str.split(':')[0]);
|
||||||
|
String fileName = (str.split(':')[1]);
|
||||||
|
|
||||||
|
if (map.containsKey(payloadId)) {
|
||||||
|
if (await tempFile.exists()) {
|
||||||
|
tempFile.rename(
|
||||||
|
tempFile.parent.path + "/" + fileName);
|
||||||
|
} else {
|
||||||
|
showSnackbar("File doesnt exist");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//add to map if not already
|
||||||
|
map[payloadId] = fileName;
|
||||||
|
}
|
||||||
|
}
|
||||||
} else if (payload.type == PayloadType.FILE) {
|
} else if (payload.type == PayloadType.FILE) {
|
||||||
showSnackbar(endid + ": File transfer started");
|
showSnackbar(endid + ": File transfer started");
|
||||||
|
tempFile = File(payload.filePath);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onPayloadTransferUpdate: (endid, payloadTransferUpdate) {
|
onPayloadTransferUpdate: (endid, payloadTransferUpdate) {
|
||||||
@ -227,6 +265,15 @@ class _MyBodyState extends State<Body> {
|
|||||||
"success, total bytes = ${payloadTransferUpdate.totalBytes}");
|
"success, total bytes = ${payloadTransferUpdate.totalBytes}");
|
||||||
showSnackbar(endid +
|
showSnackbar(endid +
|
||||||
": SUCCESS in file transfer (file is un-named in downloads) ");
|
": SUCCESS in file transfer (file is un-named in downloads) ");
|
||||||
|
|
||||||
|
if (map.containsKey(payloadTransferUpdate.id)) {
|
||||||
|
//rename the file now
|
||||||
|
String name = map[payloadTransferUpdate.id];
|
||||||
|
tempFile.rename(tempFile.parent.path + "/" + name);
|
||||||
|
} else {
|
||||||
|
//bytes not received till yet
|
||||||
|
map[payloadTransferUpdate.id] = "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user