Skip to content

Commit b0672ea

Browse files
authored
Merge pull request #1 from LostMyAccount/bluetooth_connect
Bluetooth connect
2 parents 7b07599 + 01f9dc8 commit b0672ea

File tree

18 files changed

+515
-105
lines changed

18 files changed

+515
-105
lines changed

.idea/inspectionProfiles/Project_Default.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
apply plugin: 'com.android.application'
22

33
android {
4+
signingConfigs {
5+
debug {
6+
keyAlias 'AndroidDebugKey'
7+
keyPassword 'password'
8+
storeFile file('C:/Users/brand/.android/debug.keystore2')
9+
storePassword 'password'
10+
}
11+
}
412
compileSdkVersion 25
513
buildToolsVersion "25.0.2"
614
defaultConfig {
@@ -20,12 +28,11 @@ android {
2028
}
2129

2230
dependencies {
23-
compile fileTree(dir: 'libs', include: ['*.jar'])
31+
compile fileTree(include: ['*.jar'], dir: 'libs')
2432
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
2533
exclude group: 'com.android.support', module: 'support-annotations'
2634
})
2735
compile 'com.android.support:appcompat-v7:25.1.1'
28-
compile 'com.thebluealliance:spectrum:0.7.1'
29-
36+
compile 'com.pes.materialcolorpicker:library:1.0.2'
3037
testCompile 'junit:junit:4.12'
3138
}

app/src/main/AndroidManifest.xml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.app.reallygoodpie.ledvisualalizer">
44

5+
<uses-permission android:name="android.permission.BLUETOOTH" />
6+
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
7+
58
<application
69
android:allowBackup="true"
710
android:icon="@mipmap/ic_launcher"

0 commit comments

Comments
 (0)