Skip to content

Commit 9ebfca9

Browse files
committed
add fiction and update jsoupsimple
1 parent 3921ad5 commit 9ebfca9

Some content is hidden

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

71 files changed

+3161
-2
lines changed

Fiction/.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

Fiction/app/.gitignore

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

Fiction/app/build.gradle

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
apply plugin: 'com.android.application'
2+
apply plugin: 'org.greenrobot.greendao'
3+
4+
android {
5+
compileSdkVersion 25
6+
buildToolsVersion "25.0.2"
7+
defaultConfig {
8+
applicationId "com.fiction.y"
9+
minSdkVersion 15
10+
targetSdkVersion 25
11+
versionCode 1
12+
versionName "1.0"
13+
}
14+
greendao {
15+
targetGenDir 'src/main/java/'
16+
}
17+
18+
}
19+
20+
dependencies {
21+
compile fileTree(include: ['*.jar'], dir: 'libs')
22+
compile 'com.android.support:appcompat-v7:25.1.0'
23+
compile 'org.jsoup:jsoup:1.10.2'
24+
compile 'io.reactivex:rxjava:1.2.5'
25+
compile 'io.reactivex:rxandroid:1.2.1'
26+
compile 'com.github.bumptech.glide:glide:3.7.0'
27+
compile 'com.android.support:design:25.1.0'
28+
compile 'com.android.support:cardview-v7:25.1.0'
29+
compile 'com.trello:rxlifecycle-components:1.0'
30+
compile 'com.github.zhaokaiqiang.klog:library:1.6.0'
31+
compile 'com.xadapter:xadapter:0.0.6'
32+
compile 'org.greenrobot:greendao:3.2.0'
33+
compile 'org.apmem.tools:layouts:1.10@aar'
34+
}

Fiction/app/proguard-rules.pro

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in /Users/y/Downloads/android/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+
#}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
4+
package="com.fiction.y">
5+
6+
<uses-permission android:name="android.permission.INTERNET" />
7+
<application
8+
android:name="framework.App"
9+
android:allowBackup="true"
10+
android:icon="@mipmap/ic_launcher"
11+
android:label="@string/app_name"
12+
android:supportsRtl="true"
13+
android:theme="@style/AppTheme"
14+
tools:ignore="AllowBackup">
15+
<activity android:name=".search.w.SearchActivity">
16+
<intent-filter>
17+
<action android:name="android.intent.action.MAIN" />
18+
19+
<category android:name="android.intent.category.LAUNCHER" />
20+
</intent-filter>
21+
</activity>
22+
<activity android:name=".contents.w.ContentsActivity" />
23+
<activity android:name=".detail.w.DetailActivity" />
24+
</application>
25+
26+
</manifest>

0 commit comments

Comments
 (0)