Skip to content

Commit 101788a

Browse files
committed
test
0 parents  commit 101788a

File tree

67 files changed

+2244
-0
lines changed

Some content is hidden

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

67 files changed

+2244
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
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

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 25
5+
buildToolsVersion "25.0.3"
6+
defaultConfig {
7+
applicationId "rudiment.jsoupexample"
8+
minSdkVersion 19
9+
versionCode 1
10+
versionName "1.0"
11+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12+
}
13+
defaultConfig {
14+
renderscriptTargetApi 20
15+
renderscriptSupportModeEnabled true
16+
}
17+
buildTypes {
18+
release {
19+
minifyEnabled false
20+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
21+
}
22+
}
23+
dataBinding {
24+
enabled true
25+
}
26+
}
27+
28+
repositories {
29+
maven { url "https://jitpack.io" }
30+
mavenCentral()
31+
jcenter()
32+
}
33+
34+
dependencies {
35+
compile fileTree(dir: 'libs', include: ['*.jar'])
36+
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
37+
exclude group: 'com.android.support', module: 'support-annotations'
38+
})
39+
// https://mvnrepository.com/artifact/org.jsoup/jsoup
40+
compile group: 'org.jsoup', name: 'jsoup', version: '1.7.2'
41+
// https://mvnrepository.com/artifact/com.googlecode.android-query/android-query
42+
compile group: 'com.googlecode.android-query', name: 'android-query', version: '0.25.9'
43+
compile 'com.android.support:support-v4:25.3.1'
44+
compile 'com.android.support:support-v4:25.3.1'
45+
compile 'com.android.support:appcompat-v7:25.3.1'
46+
compile 'com.android.support:cardview-v7:25.3.1'
47+
compile 'com.android.support.constraint:constraint-layout:1.0.2'
48+
compile 'com.github.jksiezni.permissive:permissive:0.2'
49+
compile 'com.android.support:design:25.3.1'
50+
compile 'jp.wasabeef:blurry:2.1.1'
51+
compile 'at.favre.lib:dali:0.3.4'
52+
compile 'jp.wasabeef:glide-transformations:2.0.2'
53+
compile 'com.jaredrummler:colorpicker:1.0.0'
54+
compile 'com.github.appunite:video-player-android:master-SNAPSHOT'
55+
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
56+
/* compile 'com.google.firebase:firebase-ads:11.0.2'
57+
compile 'com.google.firebase:firebase-core:11.0.2'*/
58+
testCompile 'junit:junit:4.12'
59+
}
60+
/*
61+
apply plugin: 'com.google.gms.google-services'*/

app/proguard-rules.pro

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in D:\setup\sdk\sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}
18+
19+
# Uncomment this to preserve the line number information for
20+
# debugging stack traces.
21+
#-keepattributes SourceFile,LineNumberTable
22+
23+
# If you keep the line number information, uncomment this to
24+
# hide the original source file name.
25+
#-renamesourcefileattribute SourceFile

0 commit comments

Comments
 (0)