Skip to content
New issue

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

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

Already on GitHub? # to your account

updated for android 26 #20

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
Binary file not shown.
Binary file not shown.
29 changes: 29 additions & 0 deletions Android/BlunoBasicDemo/.idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Android/BlunoBasicDemo/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 14 additions & 16 deletions Android/BlunoBasicDemo/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Android/BlunoBasicDemo/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Android/BlunoBasicDemo/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Android/BlunoBasicDemo/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
compileSdkVersion 26
buildToolsVersion "28.0.3"

defaultConfig {
applicationId "com.dfrobot.angelo.blunobasicdemo"
minSdkVersion 18
targetSdkVersion 21
minSdkVersion 26
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
Expand All @@ -22,5 +22,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:appcompat-v7:26.1.0'
}
3 changes: 2 additions & 1 deletion Android/BlunoBasicDemo/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ devices only. If you want to make your app available to devices that don't supp
you should omit this in the manifest. Instead, determine BLE capability by using
PackageManager.hasSystemFeature(FEATURE_BLUETOOTH_LE) -->
<uses-feature android:name="android.hardware.bluetooth_le" android:required="true"/>

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
package com.dfrobot.angelo.blunobasicdemo;

import android.Manifest;
import android.app.AlertDialog;
import android.content.Context;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.content.Intent;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ScrollView;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends BlunoLibrary {
private Button buttonScan;
Expand All @@ -21,9 +27,8 @@ protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
onCreateProcess(); //onCreate Process by BlunoLibrary


serialBegin(115200); //set the Uart Baudrate on BLE chip to 115200
requestPermissions(new String[]{Manifest.permission.ACCESS_COARSE_LOCATION, Manifest.permission.ACCESS_FINE_LOCATION}, 1);
serialBegin(115200); //set the Uart Baudrate on BLE chip to 115200

serialReceivedText=(TextView) findViewById(R.id.serialReveicedText); //initial the EditText of the received data
serialSendText=(EditText) findViewById(R.id.serialSendText); //initial the EditText of the sending data
Expand All @@ -45,8 +50,21 @@ public void onClick(View v) {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub

buttonScanOnClickProcess(); //Alert Dialog for selecting the BLE device
int permissionCheck = ContextCompat.checkSelfPermission(getApplicationContext(), Manifest.permission.ACCESS_FINE_LOCATION);
if (permissionCheck != PackageManager.PERMISSION_GRANTED){
boolean requestCheck = ActivityCompat.shouldShowRequestPermissionRationale(MainActivity.this, Manifest.permission.ACCESS_FINE_LOCATION);
if (requestCheck){
requestPermissions(new String[]{Manifest.permission.ACCESS_COARSE_LOCATION, Manifest.permission.ACCESS_FINE_LOCATION}, 1);
}else {
new AlertDialog.Builder(MainActivity.this)
.setTitle("Permission Required")
.setMessage("Please enable location permission to use this application.")
.setNeutralButton("I Understand", null)
.show();
}
}else {
buttonScanOnClickProcess(); //Alert Dialog for selecting the BLE device
}
}
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<TextView
android:id="@+id/serialReveicedText"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:textSize="10sp"
Expand Down Expand Up @@ -53,16 +53,14 @@
<EditText
android:id="@+id/serialSendText"
android:layout_width="310dp"
android:layout_height="40dp"
android:layout_height="50dp"
android:layout_below="@+id/buttonScan"
android:layout_centerHorizontal="true"
android:layout_marginTop="22dp"
android:background="#555555"
android:bufferType="editable"
android:ems="10"
android:inputType="text"
android:text="Data sending Area"
android:textColor="#999999"
android:hint="Data sending area"
android:textSize="20dip" />

<Button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:paddingHorizontal="20dp">
<TextView android:id="@+id/device_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
Expand Down
2 changes: 1 addition & 1 deletion Android/BlunoBasicDemo/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Light">
<style name="AppTheme" parent="android:Theme.Material">
<!-- Customize your theme here. -->
</style>

Expand Down
8 changes: 8 additions & 0 deletions Android/BlunoBasicDemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
Expand All @@ -15,6 +19,10 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}

Expand Down