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

updated d2d binaries #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 4 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ dependencies {

// implementation 'network.datahop.libs:datahop:v0.0.13'
implementation(name: 'datahop', ext: 'aar')
implementation 'network.datahop.libs:blediscovery:0.0.8'
implementation 'network.datahop.libs:wifidirect:0.0.3'
// implementation 'network.datahop.libs:blediscovery:0.0.8'
implementation(name: 'blediscovery', ext: 'aar')
implementation(name: 'wifidirect', ext: 'aar')
// implementation 'network.datahop.libs:wifidirect:0.0.3'
}
Binary file added app/libs/blediscovery.aar
Binary file not shown.
Binary file added app/libs/wifidirect.aar
Binary file not shown.
7 changes: 7 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
<uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />

<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"/>

<uses-permission android:name="android.permission.NEARBY_WIFI_DEVICES" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>

Expand Down Expand Up @@ -42,6 +46,9 @@

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.permission.NEARBY_WIFI_DEVICES"/>
</intent-filter>
<intent-filter android:label="Share with Datahop">
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
Expand Down