Skip to content

Commit

Permalink
Bug fixes, improvements, new features
Browse files Browse the repository at this point in the history
  • Loading branch information
KurozeroPB committed Oct 11, 2018
1 parent deb2048 commit 99ec0b7
Show file tree
Hide file tree
Showing 15 changed files with 171 additions and 143 deletions.
27 changes: 17 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,30 @@ sentry {
}

android {
buildToolsVersion '28.0.3'
compileSdkVersion 27
defaultConfig {
applicationId "xyz.kurozero.nekosmoe"
applicationId 'xyz.kurozero.nekosmoe'
minSdkVersion 23
targetSdkVersion 27
versionCode 18
versionName "0.12.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
versionName '0.12.0'
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
packagingOptions {
exclude 'META-INF/main.kotlin_module'
}
}

repositories {
google()
jcenter()
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url 'https://kotlin.bintray.com/kotlinx' }
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
maven { url 'https://maven.google.com' }
}

dependencies {
Expand All @@ -37,13 +44,13 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$serialization_version"
implementation "org.jetbrains.anko:anko:$anko_version"
implementation "org.jetbrains.anko:anko-design:$anko_version"
//noinspection GradleCompatible
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:animated-vector-drawable:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
implementation 'com.android.support:exifinterface:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3' // 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.github.kittinunf.fuel:fuel-android:1.12.1'
implementation 'com.github.kittinunf.fuel:fuel-gson:1.12.1'
implementation 'com.squareup.picasso:picasso:2.71828'
Expand All @@ -53,16 +60,16 @@ dependencies {
implementation 'com.facebook.fresco:fresco:1.9.0'
implementation 'com.github.stfalcon:frescoimageviewer:0.5.0'
implementation "io.sentry:sentry-android:$sentry_version"
implementation 'com.google.android.gms:play-services-ads:17.0.0' // 'com.google.android.gms:play-services-ads:15.0.1'
implementation 'com.google.firebase:firebase-ads:17.0.0' // 'com.google.firebase:firebase-ads:15.0.1'
implementation 'com.google.firebase:firebase-core:16.0.4' // 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.android.gms:play-services-ads:17.0.0'
implementation 'com.google.firebase:firebase-ads:17.0.0'
implementation 'com.google.firebase:firebase-core:16.0.4'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

kotlin {
experimental {
coroutines "enable"
coroutines 'enable'
}
}
16 changes: 15 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="xyz.kurozero.nekosmoe">

<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
Expand All @@ -14,7 +15,11 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/nekos_icon_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
<meta-data
android:name="com.google.android.gms.ads.AD_MANAGER_APP"
android:value="true" />
<activity
android:name="xyz.kurozero.nekosmoe.NekoMain"
android:label="@string/app_name"
Expand All @@ -31,6 +36,15 @@
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="xyz.kurozero.nekosmoe.NekoFileProvider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
</application>

</manifest>
Loading

1 comment on commit 99ec0b7

@eiiiiix
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This app is incompatible with all of your devices.
ahhh yes, i really should get a new phone

Please sign in to comment.