Skip to content

Commit 788763b

Browse files
author
juergen
committed
switched to Ninja as base
1 parent 2d4d460 commit 788763b

File tree

333 files changed

+59344
-19020
lines changed

Some content is hidden

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

333 files changed

+59344
-19020
lines changed

.gitignore

100755100644
+9-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
*.iml
2-
.gradle
1+
# Created by .ignore support plugin (hsz.mobi)
2+
/.gradle/
3+
/.idea/
4+
/build/
5+
/gradle/
6+
/gradlew
37
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
6-
/build
8+
/app/build/
9+
Würde app/app.iml löschen
10+
Würde browser.iml löschen

Screenshots/1.png

-346 KB
Binary file not shown.

Screenshots/2.png

-352 KB
Binary file not shown.

Screenshots/3.png

-347 KB
Binary file not shown.

Screenshots/4.png

-203 KB
Binary file not shown.

Screenshots/5.png

-149 KB
Binary file not shown.

Screenshots/6.png

-127 KB
Binary file not shown.

Screenshots/7.png

-186 KB
Binary file not shown.

Screenshots/8.png

-347 KB
Binary file not shown.

app/.gitignore

-1
This file was deleted.

app/build.gradle

100755100644
+12-15
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion '25.0.2'
4+
compileSdkVersion 27
5+
buildToolsVersion "27.0.2"
6+
67
defaultConfig {
78
applicationId "de.baumann.browser"
89
minSdkVersion 21
9-
targetSdkVersion 25
10-
versionCode 61
10+
targetSdkVersion 27
11+
versionCode 62
1112
versionName "4.5.1"
12-
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313
}
14+
1415
buildTypes {
1516
release {
1617
minifyEnabled false
17-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
1819
}
1920
}
2021
lintOptions {
@@ -25,14 +26,10 @@ android {
2526
}
2627

2728
dependencies {
28-
compile fileTree(include: ['*.jar'], dir: 'libs')
29-
testCompile 'junit:junit:4.12'
30-
compile 'com.android.support:appcompat-v7:25.3.1'
31-
compile 'com.android.support:cardview-v7:25.3.1'
32-
compile 'com.android.support:design:25.3.1'
33-
compile 'com.github.ksoichiro:android-observablescrollview:1.6.0'
29+
compile 'com.android.support:support-v4:27.0.2'
30+
compile 'com.android.support:appcompat-v7:27.0.2'
31+
compile 'com.android.support:design:27.0.2'
32+
compile 'com.android.support:cardview-v7:27.0.2'
33+
compile 'com.github.bumptech.glide:glide:4.3.1'
3434
compile 'com.mobapphome.library:mah-encryptor-lib:1.0.1'
35-
compile 'com.github.chyrta:AndroidOnboarder:0.6'
36-
compile 'com.github.daniel-stoneuk:material-about-library:1.7.1'
37-
compile 'com.squareup.picasso:picasso:2.5.2'
3835
}

0 commit comments

Comments
 (0)