Skip to content

Commit 335ccb0

Browse files
author
Gaukler Faun
committed
Initial commit
0 parents  commit 335ccb0

Some content is hidden

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

62 files changed

+4730
-0
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/dictionaries/juergen.xml

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

.idea/encodings.xml

+6
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

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

.idea/modules.xml

+9
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.

app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 25
5+
buildToolsVersion '25.0.0'
6+
defaultConfig {
7+
applicationId "de.baumann.browser"
8+
minSdkVersion 21
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+
return void
21+
}
22+
23+
dependencies {
24+
compile fileTree(include: ['*.jar'], dir: 'libs')
25+
testCompile 'junit:junit:4.12'
26+
compile 'com.android.support:appcompat-v7:25.0.0'
27+
compile 'com.android.support:design:25.0.0'
28+
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
29+
}

app/proguard-rules.pro

+17
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 /home/juergen/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+
#}

app/src/main/AndroidManifest.xml

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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="de.baumann.browser">
5+
6+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
7+
8+
<uses-permission android:name="android.permission.INTERNET"/>
9+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
10+
<uses-permission android:name="android.permisson.ACCESS_WIFI_STATE"/>
11+
12+
<application
13+
android:allowBackup="true"
14+
android:icon="@mipmap/ic_launcher"
15+
android:label="@string/app_name"
16+
android:fullBackupContent="true"
17+
android:supportsRtl="false"
18+
android:largeHeap="true"
19+
android:hardwareAccelerated="true"
20+
tools:ignore="GoogleAppIndexingWarning" >
21+
22+
<activity android:name=".Browser"
23+
android:launchMode="singleTop"
24+
android:label="@string/app_name"
25+
android:screenOrientation="portrait"
26+
android:theme="@style/AppTheme.NoActionBar">
27+
28+
<intent-filter>
29+
<action android:name="android.intent.action.MAIN" />
30+
</intent-filter>
31+
</activity>
32+
33+
<activity android:name=".Bookmarks"
34+
android:launchMode="singleTop"
35+
android:label="@string/app_name"
36+
android:screenOrientation="portrait"
37+
android:theme="@style/AppTheme.NoActionBar">
38+
39+
<intent-filter>
40+
<action android:name="android.intent.action.MAIN" />
41+
<category android:name="android.intent.category.LAUNCHER" />
42+
</intent-filter>
43+
</activity>
44+
45+
<activity
46+
android:name=".popups.Popup_bookmarks"
47+
android:launchMode="singleTask"
48+
android:theme="@style/AppThemeDialog"
49+
android:label="@string/app_name">
50+
51+
<intent-filter>
52+
<action android:name="android.intent.action.MAIN" />
53+
</intent-filter>
54+
</activity>
55+
56+
<activity
57+
android:name=".popups.Popup_readLater"
58+
android:launchMode="singleTask"
59+
android:theme="@style/AppThemeDialog"
60+
android:label="@string/app_name">
61+
62+
<intent-filter>
63+
<action android:name="android.intent.action.MAIN" />
64+
</intent-filter>
65+
</activity>
66+
67+
<activity
68+
android:name=".popups.Popup_history"
69+
android:launchMode="singleTask"
70+
android:theme="@style/AppThemeDialog"
71+
android:label="@string/app_name">
72+
73+
<intent-filter>
74+
<action android:name="android.intent.action.MAIN" />
75+
</intent-filter>
76+
</activity>
77+
78+
<activity
79+
android:name=".helper.Intent"
80+
android:noHistory="true"
81+
android:theme="@android:style/Theme.Translucent.NoTitleBar"
82+
android:label="@string/app_name">
83+
84+
<intent-filter>
85+
<action android:name="android.intent.action.MAIN" />
86+
</intent-filter>
87+
88+
<intent-filter>
89+
<category android:name="android.intent.category.DEFAULT" />
90+
<category android:name="android.intent.category.BROWSABLE" />
91+
<action android:name="android.intent.action.VIEW" />
92+
<data android:scheme="http" />
93+
<data android:scheme="https" />
94+
</intent-filter>
95+
</activity>
96+
97+
<activity
98+
android:name=".helper.Activity_settings"
99+
android:launchMode="singleTask"
100+
android:theme="@style/AppTheme.NoActionBar" />
101+
102+
</application>
103+
104+
</manifest>

0 commit comments

Comments
 (0)