Skip to content

Commit

Permalink
update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
voroshkov committed Jul 3, 2019
1 parent 0dd6ac9 commit c86bb51
Show file tree
Hide file tree
Showing 59 changed files with 5,972 additions and 6,110 deletions.
20 changes: 10 additions & 10 deletions Android/ChorusRFLaptimer/.gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
*.iml
*.apk
.gradle
/local.properties
/.idea
/app/release
.DS_Store
/build
/captures
.externalNativeBuild
*.iml
*.apk
.gradle/
.idea/
build/
captures/
app/release/
local.properties
.DS_Store
.externalNativeBuild
Binary file not shown.
29 changes: 0 additions & 29 deletions Android/ChorusRFLaptimer/.idea/codeStyles/Project.xml

This file was deleted.

22 changes: 0 additions & 22 deletions Android/ChorusRFLaptimer/.idea/compiler.xml

This file was deleted.

This file was deleted.

20 changes: 0 additions & 20 deletions Android/ChorusRFLaptimer/.idea/gradle.xml

This file was deleted.

33 changes: 0 additions & 33 deletions Android/ChorusRFLaptimer/.idea/misc.xml

This file was deleted.

11 changes: 0 additions & 11 deletions Android/ChorusRFLaptimer/.idea/modules.xml

This file was deleted.

12 changes: 0 additions & 12 deletions Android/ChorusRFLaptimer/.idea/runConfigurations.xml

This file was deleted.

6 changes: 0 additions & 6 deletions Android/ChorusRFLaptimer/.idea/vcs.xml

This file was deleted.

1 change: 0 additions & 1 deletion Android/ChorusRFLaptimer/app/.gitignore

This file was deleted.

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

android {
compileSdkVersion 26
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "app.andrey_voroshkov.chorus_laptimer"
minSdkVersion 16
targetSdkVersion 26
versionCode 24
versionName "0.7.12"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
archivesBaseName = "ChorusRFLaptimer"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
implementation project(':bluetoothSPP')
implementation project(':usbSerialForAndroid')
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
}
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "app.andrey_voroshkov.chorus_laptimer"
minSdkVersion 16
targetSdkVersion 26
versionCode 24
versionName "0.7.12"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
archivesBaseName = "ChorusRFLaptimer"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
implementation project(':bluetoothSPP')
implementation project(':usbSerialForAndroid')
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
}
34 changes: 17 additions & 17 deletions Android/ChorusRFLaptimer/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\AndroidSDK/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\AndroidSDK/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
-keep class com.hoho.android.usbserial.driver.** { *;}
1 change: 0 additions & 1 deletion Android/ChorusRFLaptimer/app/release/output.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
package com.app.andrey_voroshkov.myapplication;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
* Instrumentation test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("com.app.andrey_voroshkov.myapplication", appContext.getPackageName());
}
}
package com.app.andrey_voroshkov.myapplication;

import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
* Instrumentation test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();

assertEquals("com.app.andrey_voroshkov.myapplication", appContext.getPackageName());
}
}
Loading

0 comments on commit c86bb51

Please sign in to comment.