Skip to content

Commit 4449cf0

Browse files
committed
Initial commit
1 parent 8a70d2f commit 4449cf0

File tree

3,885 files changed

+120855
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,885 files changed

+120855
-1
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
.externalNativeBuild

.idea/compiler.xml

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

.idea/copyright/profiles_settings.xml

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

.idea/gradle.xml

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

.idea/misc.xml

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

.idea/modules.xml

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

.idea/runConfigurations.xml

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

.idea/vcs.xml

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

README.md

-1
This file was deleted.

app/build.gradle

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 25
5+
buildToolsVersion "25.0.2"
6+
defaultConfig {
7+
applicationId "com.javier.app"
8+
minSdkVersion 19
9+
targetSdkVersion 25
10+
versionCode 1
11+
versionName "1.0"
12+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18+
}
19+
}
20+
}
21+
22+
dependencies {
23+
compile 'com.android.support:appcompat-v7:25.3.1'
24+
compile project(path: ':filterview')
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Automatically generated file. DO NOT MODIFY
3+
*/
4+
package com.javier.app.test;
5+
6+
public final class BuildConfig {
7+
public static final boolean DEBUG = Boolean.parseBoolean("true");
8+
public static final String APPLICATION_ID = "com.javier.app.test";
9+
public static final String BUILD_TYPE = "debug";
10+
public static final String FLAVOR = "";
11+
public static final int VERSION_CODE = 1;
12+
public static final String VERSION_NAME = "1.0";
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Automatically generated file. DO NOT MODIFY
3+
*/
4+
package com.javier.app;
5+
6+
public final class BuildConfig {
7+
public static final boolean DEBUG = Boolean.parseBoolean("true");
8+
public static final String APPLICATION_ID = "com.javier.app";
9+
public static final String BUILD_TYPE = "debug";
10+
public static final String FLAVOR = "";
11+
public static final int VERSION_CODE = 1;
12+
public static final String VERSION_NAME = "1.0";
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.compat;
8+
9+
public final class R {
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.coreui;
8+
9+
public final class R {
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.coreutils;
8+
9+
public final class R {
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.fragment;
8+
9+
public final class R {
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.graphics.drawable;
8+
9+
public final class R {
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.graphics.drawable.animated;
8+
9+
public final class R {
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* AUTO-GENERATED FILE. DO NOT MODIFY.
2+
*
3+
* This class was automatically generated by the
4+
* gradle plugin from the resource data it found. It
5+
* should not be modified by hand.
6+
*/
7+
package android.support.mediacompat;
8+
9+
public final class R {
10+
}

0 commit comments

Comments
 (0)