From 488f73e0b50c97a2b2b6e0ecfb83c42e7be90f8f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 20 Dec 2018 23:08:33 +0300 Subject: upd gradle & icon --- org.fox.ttcomics/build.gradle | 40 ++++++++++----------- org.fox.ttcomics/org.fox.ttcomics.iml | 36 ++++++++++++++++--- org.fox.ttcomics/src/main/AndroidManifest.xml | 10 +++--- org.fox.ttcomics/src/main/ic_launcher-web.png | Bin 0 -> 46644 bytes .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 9286 bytes .../src/main/res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 6420 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 4676 bytes .../src/main/res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 3790 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 13477 bytes .../main/res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 9233 bytes .../src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 26172 bytes .../main/res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 15030 bytes .../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 39508 bytes .../main/res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 21408 bytes .../src/main/res/values/ic_launcher_background.xml | 4 +++ org.fox.ttcomics/src/main/web_hi_res_512.png | Bin 0 -> 145250 bytes 16 files changed, 61 insertions(+), 29 deletions(-) create mode 100644 org.fox.ttcomics/src/main/ic_launcher-web.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 org.fox.ttcomics/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 org.fox.ttcomics/src/main/res/values/ic_launcher_background.xml create mode 100644 org.fox.ttcomics/src/main/web_hi_res_512.png (limited to 'org.fox.ttcomics') diff --git a/org.fox.ttcomics/build.gradle b/org.fox.ttcomics/build.gradle index 1964a81..c5ead0b 100755 --- a/org.fox.ttcomics/build.gradle +++ b/org.fox.ttcomics/build.gradle @@ -1,8 +1,8 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 27 - buildToolsVersion "27.0.3" + compileSdkVersion 28 + buildToolsVersion "28.0.3" defaultConfig { applicationId "org.fox.ttcomics2" @@ -47,23 +47,23 @@ android { } dependencies { - compile 'com.android.support:support-v4:27.1.0' - compile 'com.android.support:appcompat-v7:27.1.0' - compile 'com.android.support:cardview-v7:27.1.0' - compile 'com.android.support:design:27.1.0' - compile 'com.shamanland:fab:0.0.8' - compile 'jp.co.recruit_mp:android-HeaderFooterGridView:0.2.4' - compile 'com.github.bumptech.glide:glide:3.8.0' - compile 'ch.acra:acra:4.9.1' - compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar' - compile 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar' - compile 'frankiesardo:icepick:3.2.0' - provided 'frankiesardo:icepick-processor:3.2.0' - compile 'com.github.livefront:bridge:v1.1.2' + implementation 'com.android.support:support-v4:27.1.0' + implementation 'com.android.support:appcompat-v7:27.1.0' + implementation 'com.android.support:cardview-v7:27.1.0' + implementation 'com.android.support:design:27.1.0' + implementation 'com.shamanland:fab:0.0.8' + implementation 'jp.co.recruit_mp:android-HeaderFooterGridView:0.2.4' + implementation 'com.github.bumptech.glide:glide:3.8.0' + implementation 'ch.acra:acra:4.9.1' + implementation 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar' + implementation 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar' + implementation 'frankiesardo:icepick:3.2.0' + compileOnly 'frankiesardo:icepick-processor:3.2.0' + implementation 'com.github.livefront:bridge:v1.1.2' annotationProcessor 'frankiesardo:icepick-processor:3.2.0' - compile 'com.google.android.gms:play-services-base:15.0.1' - compile 'com.google.android.gms:play-services-auth:15.0.1' - compile files('libs/nineoldandroids-2.4.0.jar') - compile 'com.gu:option:1.3' - compile 'net.rdrei.android.dirchooser:library:3.2@aar' + implementation 'com.google.android.gms:play-services-base:15.0.1' + implementation 'com.google.android.gms:play-services-auth:15.0.1' + implementation files('libs/nineoldandroids-2.4.0.jar') + implementation 'com.gu:option:1.3' + implementation 'net.rdrei.android.dirchooser:library:3.2@aar' } diff --git a/org.fox.ttcomics/org.fox.ttcomics.iml b/org.fox.ttcomics/org.fox.ttcomics.iml index cb4b500..05eed40 100755 --- a/org.fox.ttcomics/org.fox.ttcomics.iml +++ b/org.fox.ttcomics/org.fox.ttcomics.iml @@ -23,19 +23,19 @@ - - + + - + - + @@ -84,26 +84,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/org.fox.ttcomics/src/main/AndroidManifest.xml b/org.fox.ttcomics/src/main/AndroidManifest.xml index b10fe85..74e8cd3 100755 --- a/org.fox.ttcomics/src/main/AndroidManifest.xml +++ b/org.fox.ttcomics/src/main/AndroidManifest.xml @@ -1,7 +1,8 @@ + android:versionCode="84" + android:versionName="1.42" > @@ -9,12 +10,13 @@ + android:allowBackup="true" + tools:ignore="GoogleAppIndexingWarning"> + + #FFFFFF + \ No newline at end of file diff --git a/org.fox.ttcomics/src/main/web_hi_res_512.png b/org.fox.ttcomics/src/main/web_hi_res_512.png new file mode 100644 index 0000000..66b6963 Binary files /dev/null and b/org.fox.ttcomics/src/main/web_hi_res_512.png differ -- cgit v1.2.3