Skip to content

Commit

Permalink
First pass for Android Linter.
Browse files Browse the repository at this point in the history
* Fixed display bug in AmbientLight generator.
* Fixed display bug in ForegroundApplication generator.
  • Loading branch information
audaciouscode committed May 28, 2017
1 parent b7a8b1c commit 20856ba
Show file tree
Hide file tree
Showing 79 changed files with 8,050 additions and 7,747 deletions.
70 changes: 35 additions & 35 deletions .gitignore
@@ -1,35 +1,35 @@
# Built application files
*.apk
*.ap_

# Files for the Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

.idea/
*.iml
# Built application files
*.apk
*.ap_

# Files for the Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

.idea/
*.iml
70 changes: 35 additions & 35 deletions .travis.yml
@@ -1,35 +1,35 @@
sudo: true
language: android
jdk: oraclejdk8

before_install:
- wget http://services.gradle.org/distributions/gradle-3.3-bin.zip
- unzip gradle-3.3-bin.zip
- export GRADLE_HOME=$PWD/gradle-3.3
- export PATH=$GRADLE_HOME/bin:$PATH
- ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a --no-ui --filter tool,platform-tool,build-tools-25.0.3

script:
- gradle assembleDebug

android:
components:
- platform-tools
- tools

# The BuildTools version used by your project
- build-tools-25

# The SDK version used to compile your project
- android-25

# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-25

# Specify at least one system image,
# if you need to run emulator(s) during your tests
# - sys-img-armeabi-v7a-android-23
# - sys-img-x86-android-23
sudo: true
language: android
jdk: oraclejdk8

before_install:
- wget http://services.gradle.org/distributions/gradle-3.3-bin.zip
- unzip gradle-3.3-bin.zip
- export GRADLE_HOME=$PWD/gradle-3.3
- export PATH=$GRADLE_HOME/bin:$PATH
- ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a --no-ui --filter tool,platform-tool,build-tools-25.0.3

script:
- gradle assembleDebug

android:
components:
- platform-tools
- tools

# The BuildTools version used by your project
- build-tools-25

# The SDK version used to compile your project
- android-25

# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-25

# Specify at least one system image,
# if you need to run emulator(s) during your tests
# - sys-img-armeabi-v7a-android-23
# - sys-img-x86-android-23
5 changes: 4 additions & 1 deletion AndroidManifest.xml
Expand Up @@ -7,11 +7,14 @@
<uses-permission android:name="android.permission.READ_CALL_LOG" />
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!--suppress DeprecatedClassUsageInspection -->
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" tools:ignore="ProtectedPermissions" />
<application android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:theme="@style/AppTheme">
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:supportsRtl="false">
<activity android:name="com.audacious_software.passive_data_kit.activities.generators.MicrosoftBandAuthActivity" android:label="@string/app_name" />
<activity android:name="com.audacious_software.passive_data_kit.activities.generators.RequestPermissionActivity" android:label="@string/app_name" />
<activity android:name="com.audacious_software.passive_data_kit.activities.DiagnosticsActivity" android:label="@string/app_name" />
Expand Down

0 comments on commit 20856ba

Please sign in to comment.