commit 4120a620f710e6dac9d3ab3f8df8380e9ec1e55a Author: LUX-Timber Date: Fri Apr 19 10:58:51 2024 +0800 feat:init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/appInsightsSettings.xml b/.idea/appInsightsSettings.xml new file mode 100644 index 0000000..371f2e2 --- /dev/null +++ b/.idea/appInsightsSettings.xml @@ -0,0 +1,26 @@ + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..b589d56 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml new file mode 100644 index 0000000..0c0c338 --- /dev/null +++ b/.idea/deploymentTargetDropDown.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..0897082 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..fdf8d99 --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/migrations.xml b/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0ad17cb --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..5ba822b --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,50 @@ +plugins { + alias(libs.plugins.androidApplication) + alias(libs.plugins.jetbrainsKotlinAndroid) +} + +android { + namespace 'com.timber.soft.mylivewallpaper' + compileSdk 34 + + defaultConfig { + applicationId "com.timber.soft.mylivewallpaper" + minSdk 22 + targetSdk 34 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = '1.8' + } + + buildFeatures { + viewBinding = true + } + +} + +dependencies { + + implementation libs.androidx.core.ktx + implementation libs.androidx.appcompat + implementation libs.material + implementation libs.androidx.activity + implementation libs.androidx.constraintlayout + testImplementation libs.junit + androidTestImplementation libs.androidx.junit + androidTestImplementation libs.androidx.espresso.core +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/timber/soft/mylivewallpaper/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/timber/soft/mylivewallpaper/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..58749cc --- /dev/null +++ b/app/src/androidTest/java/com/timber/soft/mylivewallpaper/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.timber.soft.mylivewallpaper + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.timber.soft.mylivewallpaper", appContext.packageName) + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..a87876e --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/assets/live.json b/app/src/main/assets/live.json new file mode 100644 index 0000000..5f344b1 --- /dev/null +++ b/app/src/main/assets/live.json @@ -0,0 +1,1441 @@ +[{ + "title": "Yi_47", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191025/081307933210.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191025/024922917360.mp4", + "is_free": 1, + "category": 1, + "id": 957, + "cnt_like": 722346 +}, { + "title": "PitPig", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191122/034317827606.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191122/034318147323.mp4", + "is_free": 1, + "category": 1, + "id": 928, + "cnt_like": 722315 +}, { + "title": "RockImpactSeawater", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191119/023540414066.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191119/023540763132.mp4", + "is_free": 1, + "category": 13, + "id": 994, + "cnt_like": 722383 +}, { + "title": "Spongebob", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201224/104107541700.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201224/104108100135.mp4", + "is_free": 1, + "category": 1, + "id": 13536, + "cnt_like": 282565 +}, { + "title": "emoji", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200806/020311364184.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200806/020311595329.mp4", + "is_free": 1, + "category": 391, + "id": 10464, + "cnt_like": 481601 +}, { + "title": "AbstractArtPainting", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/121502686267.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/121503038393.mp4", + "is_free": 1, + "category": 1, + "id": 977, + "cnt_like": 722365 +}, { + "title": "Dropwater67", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201129/140138840907.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201129/140139102992.mp4", + "is_free": 1, + "category": 1, + "id": 11235, + "cnt_like": 316064 +}, { + "title": "cool", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200803/105544976103.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200803/105545206847.mp4", + "is_free": 1, + "category": 402, + "id": 10338, + "cnt_like": 485267 +}, { + "title": "Yi_60", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191029/041510289828.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191029/041510573099.mp4", + "is_free": 1, + "category": 15, + "id": 838, + "cnt_like": 722224 +}, { + "title": "Yi_76", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191029/090929370585.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191029/090929655608.mp4", + "is_free": 1, + "category": 4, + "id": 848, + "cnt_like": 722237 +}, { + "title": "dffd0c9e790a7895b0850195643eebe3.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/dffd0c9e790a7895b0850195643eebe3.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/dffd0c9e790a7895b0850195643eebe3.mp4", + "is_free": 1, + "category": 55702, + "id": 425, + "cnt_like": 98476 +}, { + "title": "1364480e863515784dc449cd064cd541.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/1364480e863515784dc449cd064cd541.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/1364480e863515784dc449cd064cd541.mp4", + "is_free": 1, + "category": 57135, + "id": 36, + "cnt_like": 94169 +}, { + "title": "emoji", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200806/020133523751.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200806/020133794779.mp4", + "is_free": 1, + "category": 391, + "id": 10462, + "cnt_like": 481601 +}, { + "title": "kpop", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210114/104925125240.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210114/104925288791.mp4", + "is_free": 1, + "category": 391, + "id": 23620, + "cnt_like": 262393 +}, { + "title": "MOV_2020", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191017/091737901782.JPG", + "preview": "http://d.c-launcher.com/wallpaper_video/20191023/041301491837.mp4", + "is_free": 1, + "category": 5, + "id": 775, + "cnt_like": 722160 +}, { + "title": "nature", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200409/145108878318.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200409/145109266448.mp4", + "is_free": 1, + "category": 391, + "id": 4834, + "cnt_like": 646565 +}, { + "title": "Special effects lion", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210331/031939783758.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210331/031940030806.mp4", + "is_free": 1, + "category": 371, + "id": 23700, + "cnt_like": 153442 +}, { + "title": "a5df8f05c867ba1f92576c8876456849.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/a5df8f05c867ba1f92576c8876456849.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/a5df8f05c867ba1f92576c8876456849.mp4", + "is_free": 1, + "category": 98157, + "id": 322, + "cnt_like": 23695 +}, { + "title": "fsdaaaa", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200525/101134341095.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200525/101134579459.mp4", + "is_free": 0, + "category": 370, + "id": 5434, + "cnt_like": 581165 +}, { + "title": "Cool", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201111/030844031241.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201111/030844271443.mp4", + "is_free": 1, + "category": 370, + "id": 11158, + "cnt_like": 342512 +}, { + "title": "BlackPanther", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/080257192790.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/080257608604.mp4", + "is_free": 1, + "category": 12, + "id": 868, + "cnt_like": 722256 +}, { + "title": "1df6302e2bd10061efce1dc4413aab1f.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/1df6302e2bd10061efce1dc4413aab1f.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/1df6302e2bd10061efce1dc4413aab1f.mp4", + "is_free": 1, + "category": 35841, + "id": 57, + "cnt_like": 63937 +}, { + "title": "emogi", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201119/062709006638.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201119/062709207912.mp4", + "is_free": 1, + "category": 386, + "id": 11178, + "cnt_like": 330814 +}, { + "title": "42d7e32b020fd8b2ee6ba19aa565ffc1.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/42d7e32b020fd8b2ee6ba19aa565ffc1.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/42d7e32b020fd8b2ee6ba19aa565ffc1.mp4", + "is_free": 1, + "category": 31586, + "id": 120, + "cnt_like": 15544 +}, { + "title": "lan_10", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191017/083614723679.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191029/023550003790.mp4", + "is_free": 1, + "category": 5, + "id": 796, + "cnt_like": 722181 +}, { + "title": "TiredBoy", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191209/091940751109.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191209/091941167919.mp4", + "is_free": 1, + "category": 49, + "id": 892, + "cnt_like": 722278 +}, { + "title": "bd708a4bdcd70f21267787a231fd183d.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/bd708a4bdcd70f21267787a231fd183d.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/bd708a4bdcd70f21267787a231fd183d.mp4", + "is_free": 1, + "category": 40443, + "id": 357, + "cnt_like": 91097 +}, { + "title": "BrownConyLove", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191209/122449290906.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191209/122449694258.mp4", + "is_free": 1, + "category": 49, + "id": 908, + "cnt_like": 722294 +}, { + "title": "Thanksgiving", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201126/033320578343.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201126/033320854443.mp4", + "is_free": 1, + "category": 394, + "id": 11209, + "cnt_like": 320978 +}, { + "title": "Clown", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/082201392486.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/082201741459.mp4", + "is_free": 1, + "category": 12, + "id": 762, + "cnt_like": 722150 +}, { + "title": "None", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201010/025612229386.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201010/025612966610.mp4", + "is_free": 1, + "category": 370, + "id": 10572, + "cnt_like": 388018 +}, { + "title": "rooster", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210518/030338172239.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210518/030338401666.mp4", + "is_free": 1, + "category": 367, + "id": 200003, + "cnt_like": 260659 +}, { + "title": "c69926a9d5cca8b428250d114039324f.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/c69926a9d5cca8b428250d114039324f.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/c69926a9d5cca8b428250d114039324f.mp4", + "is_free": 1, + "category": 87525, + "id": 370, + "cnt_like": 21884 +}, { + "title": "e33ec74ba27e4440763286c7b3a2e1f2.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/e33ec74ba27e4440763286c7b3a2e1f2.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/e33ec74ba27e4440763286c7b3a2e1f2.mp4", + "is_free": 1, + "category": 49031, + "id": 427, + "cnt_like": 88798 +}, { + "title": "FlowerRain04", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200605/101629359621.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200605/101629752869.mp4", + "is_free": 0, + "category": 374, + "id": 5529, + "cnt_like": 565416 +}, { + "title": "black ", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201105/093720327999.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201105/093720565434.mp4", + "is_free": 1, + "category": 367, + "id": 11132, + "cnt_like": 350737 +}, { + "title": "90abb7d0d35a66182b49411ae661c5e2.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/90abb7d0d35a66182b49411ae661c5e2.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/90abb7d0d35a66182b49411ae661c5e2.mp4", + "is_free": 1, + "category": 60923, + "id": 278, + "cnt_like": 6077 +}, { + "title": "1782e67a830fd24cfc633ef9110a067d.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/1782e67a830fd24cfc633ef9110a067d.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/1782e67a830fd24cfc633ef9110a067d.mp4", + "is_free": 1, + "category": 86219, + "id": 47, + "cnt_like": 44378 +}, { + "title": "Lighting2", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200310/093049652032.png", + "preview": "http://d.c-launcher.com/wallpaper_video/20200310/093050047396.mp4", + "is_free": 1, + "category": 367, + "id": 2267, + "cnt_like": 687480 +}, { + "title": "a7e23f8a46ccfee7d92e192de3c01704.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/a7e23f8a46ccfee7d92e192de3c01704.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/a7e23f8a46ccfee7d92e192de3c01704.mp4", + "is_free": 1, + "category": 65788, + "id": 327, + "cnt_like": 47258 +}, { + "title": "Naruto", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210608/022850478087.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210608/022850714853.mp4", + "is_free": 1, + "category": 0, + "id": 200100, + "cnt_like": 230582 +}, { + "title": "rain", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201204/163356195736.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201204/163356492131.mp4", + "is_free": 1, + "category": 391, + "id": 11302, + "cnt_like": 308768 +}, { + "title": "cute", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200803/110356370090.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200803/110356680630.mp4", + "is_free": 1, + "category": 403, + "id": 10350, + "cnt_like": 485270 +}, { + "title": "fc156aa774cfabb3a9abf5938935f954.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/fc156aa774cfabb3a9abf5938935f954.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/fc156aa774cfabb3a9abf5938935f954.mp4", + "is_free": 1, + "category": 60539, + "id": 468, + "cnt_like": 90413 +}, { + "title": "gott", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210125/105643192423.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210125/105643421067.mp4", + "is_free": 1, + "category": 14, + "id": 23652, + "cnt_like": 246585 +}, { + "title": "ce39e114d87c849e4e00ac3a8c93a2f3.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/ce39e114d87c849e4e00ac3a8c93a2f3.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/ce39e114d87c849e4e00ac3a8c93a2f3.mp4", + "is_free": 1, + "category": 3864, + "id": 387, + "cnt_like": 17386 +}, { + "title": "ad1921a7b2bc40e5e07ce8e275104fdd.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/ad1921a7b2bc40e5e07ce8e275104fdd.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/ad1921a7b2bc40e5e07ce8e275104fdd.mp4", + "is_free": 1, + "category": 93033, + "id": 335, + "cnt_like": 24480 +}, { + "title": "653c8ea491b6d4e0159fd37c96414dcc.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/653c8ea491b6d4e0159fd37c96414dcc.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/653c8ea491b6d4e0159fd37c96414dcc.mp4", + "is_free": 1, + "category": 81573, + "id": 198, + "cnt_like": 76134 +}, { + "title": "a2e342868d431a10e77ac1eacedab479.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/a2e342868d431a10e77ac1eacedab479.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/a2e342868d431a10e77ac1eacedab479.mp4", + "is_free": 1, + "category": 40753, + "id": 311, + "cnt_like": 92324 +}, { + "title": "341e96d256471b2f0b9299643a32ece8.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/341e96d256471b2f0b9299643a32ece8.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/341e96d256471b2f0b9299643a32ece8.mp4", + "is_free": 1, + "category": 72146, + "id": 95, + "cnt_like": 71093 +}, { + "title": "MP4_7", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191017/094104570143.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191017/081958839686.mp4", + "is_free": 1, + "category": 5, + "id": 787, + "cnt_like": 722172 +}, { + "title": "SkeletonKing", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201010/093551987065.png", + "preview": "http://d.c-launcher.com/wallpaper_video/20201010/093552213291.mp4", + "is_free": 1, + "category": 1, + "id": 10610, + "cnt_like": 387705 +}, { + "title": "f57caf07a7dfd82adfff313f8b1fcf79.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/f57caf07a7dfd82adfff313f8b1fcf79.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/f57caf07a7dfd82adfff313f8b1fcf79.mp4", + "is_free": 1, + "category": 28474, + "id": 460, + "cnt_like": 97493 +}, { + "title": "Naruto", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210621/112816137238.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210621/112816440902.mp4", + "is_free": 1, + "category": 0, + "id": 200128, + "cnt_like": 211351 +}, { + "title": "977b7f1450f1721cd0e3665d70d5aad7.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/977b7f1450f1721cd0e3665d70d5aad7.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/977b7f1450f1721cd0e3665d70d5aad7.mp4", + "is_free": 1, + "category": 72780, + "id": 293, + "cnt_like": 20719 +}, { + "title": "garden", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210625/123645451164.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210625/123645694853.mp4", + "is_free": 1, + "category": 368, + "id": 200139, + "cnt_like": 205486 +}, { + "title": "86f690f892c61238d9191132eb638bb5.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/86f690f892c61238d9191132eb638bb5.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/86f690f892c61238d9191132eb638bb5.mp4", + "is_free": 1, + "category": 11642, + "id": 260, + "cnt_like": 22698 +}, { + "title": "db5b5ae3bd5d96eafdb5a47a0cbbda75.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/db5b5ae3bd5d96eafdb5a47a0cbbda75.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/db5b5ae3bd5d96eafdb5a47a0cbbda75.mp4", + "is_free": 1, + "category": 3767, + "id": 413, + "cnt_like": 38347 +}, { + "title": "cute", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200827/092430501537.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200827/092430813833.mp4", + "is_free": 1, + "category": 391, + "id": 10509, + "cnt_like": 450968 +}, { + "title": "0bbd3edbb6fcfbf72be64031ec7f5ac1.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/0bbd3edbb6fcfbf72be64031ec7f5ac1.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/0bbd3edbb6fcfbf72be64031ec7f5ac1.mp4", + "is_free": 1, + "category": 88918, + "id": 21, + "cnt_like": 79130 +}, { + "title": "AbstractSpiderweb", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/095153473153.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/095153829550.mp4", + "is_free": 1, + "category": 15, + "id": 808, + "cnt_like": 722194 +}, { + "title": "5bc9f548f692f87c6ce88bc2ebe63c4c.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/5bc9f548f692f87c6ce88bc2ebe63c4c.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/5bc9f548f692f87c6ce88bc2ebe63c4c.mp4", + "is_free": 1, + "category": 24348, + "id": 174, + "cnt_like": 87592 +}, { + "title": "AbstractArt", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/100432223059.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/100432725043.mp4", + "is_free": 1, + "category": 15, + "id": 953, + "cnt_like": 722342 +}, { + "title": "guihi", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200525/102043540688.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200525/102043762055.mp4", + "is_free": 1, + "category": 14, + "id": 5447, + "cnt_like": 581222 +}, { + "title": "Naruto", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210607/015928659155.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210607/015928882252.mp4", + "is_free": 1, + "category": 0, + "id": 200081, + "cnt_like": 232035 +}, { + "title": "12975ade48c9f7dfc15faae1c818bedc.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/12975ade48c9f7dfc15faae1c818bedc.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/12975ade48c9f7dfc15faae1c818bedc.mp4", + "is_free": 1, + "category": 41208, + "id": 30, + "cnt_like": 54777 +}, { + "title": "FunnyPig", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191122/035633490975.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191122/035633873510.mp4", + "is_free": 1, + "category": 18, + "id": 929, + "cnt_like": 722316 +}, { + "title": "2e5c44cf17a994b150a557991d403023.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/2e5c44cf17a994b150a557991d403023.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/2e5c44cf17a994b150a557991d403023.mp4", + "is_free": 1, + "category": 55468, + "id": 85, + "cnt_like": 74772 +}, { + "title": "pubyu", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210113/095622066978.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210113/095623322742.mp4", + "is_free": 1, + "category": 4, + "id": 13581, + "cnt_like": 253855 +}, { + "title": "Yi_46", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191025/093035593828.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191025/024218123893.mp4", + "is_free": 1, + "category": 14, + "id": 824, + "cnt_like": 722210 +}, { + "title": "9e3e23be16624fafcab7cdf872291519.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/9e3e23be16624fafcab7cdf872291519.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/9e3e23be16624fafcab7cdf872291519.mp4", + "is_free": 1, + "category": 86781, + "id": 299, + "cnt_like": 55039 +}, { + "title": "067c94d17283812fa788b22657542865.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/067c94d17283812fa788b22657542865.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/067c94d17283812fa788b22657542865.mp4", + "is_free": 1, + "category": 33550, + "id": 10, + "cnt_like": 45792 +}, { + "title": "94bc14323a76ff8c0403c364d892045d.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/94bc14323a76ff8c0403c364d892045d.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/94bc14323a76ff8c0403c364d892045d.mp4", + "is_free": 1, + "category": 56003, + "id": 287, + "cnt_like": 248 +}, { + "title": "heart", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200804/024926946585.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200804/024927228402.mp4", + "is_free": 1, + "category": 373, + "id": 10365, + "cnt_like": 484298 +}, { + "title": "Rose butterfly", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201010/094243197108.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201010/094243537321.mp4", + "is_free": 1, + "category": 1, + "id": 10618, + "cnt_like": 387710 +}, { + "title": "4dfc5fcb93dcc758142b16841f0a6c88.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/4dfc5fcb93dcc758142b16841f0a6c88.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/4dfc5fcb93dcc758142b16841f0a6c88.mp4", + "is_free": 1, + "category": 38803, + "id": 137, + "cnt_like": 43424 +}, { + "title": "naruto", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210114/021953737203.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210114/021954459582.mp4", + "is_free": 1, + "category": 0, + "id": 18600, + "cnt_like": 257891 +}, { + "title": "Undertaker", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210118/113325391084.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210118/113325658424.mp4", + "is_free": 1, + "category": 1, + "id": 23645, + "cnt_like": 256622 +}, { + "title": "fsafsaf", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200525/075427176770.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200525/075427441907.mp4", + "is_free": 0, + "category": 370, + "id": 5422, + "cnt_like": 581292 +}, { + "title": "7234ff144ac3b7af58834ca229aa9235.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/7234ff144ac3b7af58834ca229aa9235.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/7234ff144ac3b7af58834ca229aa9235.mp4", + "is_free": 1, + "category": 2342, + "id": 214, + "cnt_like": 46935 +}, { + "title": "love", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201130/114040774562.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201130/114040938311.mp4", + "is_free": 1, + "category": 367, + "id": 11245, + "cnt_like": 314729 +}, { + "title": " astronaut", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200803/105304131460.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200803/105304389110.mp4", + "is_free": 1, + "category": 394, + "id": 10334, + "cnt_like": 485266 +}, { + "title": "girl", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201010/092703425113.png", + "preview": "http://d.c-launcher.com/wallpaper_video/20201010/092703766424.mp4", + "is_free": 1, + "category": 1, + "id": 10603, + "cnt_like": 387707 +}, { + "title": "frvzqw", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200525/102433052730.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200525/102433269893.mp4", + "is_free": 1, + "category": 14, + "id": 5452, + "cnt_like": 581222 +}, { + "title": "Wolverine", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/090449177084.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/090449512482.mp4", + "is_free": 1, + "category": 12, + "id": 778, + "cnt_like": 722163 +}, { + "title": "c723749550e4a334893d35dad24f5ba6.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/c723749550e4a334893d35dad24f5ba6.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/c723749550e4a334893d35dad24f5ba6.mp4", + "is_free": 1, + "category": 92026, + "id": 372, + "cnt_like": 51936 +}, { + "title": "dragon", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210625/123409020713.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210625/123409389163.mp4", + "is_free": 1, + "category": 368, + "id": 200137, + "cnt_like": 205491 +}, { + "title": "3eed5ffd230cfcf43673f58472a0bac3.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/3eed5ffd230cfcf43673f58472a0bac3.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/3eed5ffd230cfcf43673f58472a0bac3.mp4", + "is_free": 1, + "category": 36478, + "id": 117, + "cnt_like": 92329 +}, { + "title": "SmokeFluid", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/112958339192.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/112958723120.mp4", + "is_free": 1, + "category": 15, + "id": 827, + "cnt_like": 722213 +}, { + "title": "fsgfdsg", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200526/025025241992.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200526/025025541814.mp4", + "is_free": 1, + "category": 49, + "id": 5479, + "cnt_like": 580264 +}, { + "title": "DTMP", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201207/112325208607.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201207/112325369482.mp4", + "is_free": 1, + "category": 367, + "id": 11313, + "cnt_like": 304737 +}, { + "title": "91b6b71fecacd38d17f38b4898f3ddf1.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/91b6b71fecacd38d17f38b4898f3ddf1.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/91b6b71fecacd38d17f38b4898f3ddf1.mp4", + "is_free": 1, + "category": 16829, + "id": 281, + "cnt_like": 617 +}, { + "title": "Yi_40", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191024/094257667365.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191024/094359519903.mp4", + "is_free": 1, + "category": 15, + "id": 814, + "cnt_like": 722200 +}, { + "title": "83cd4c489f51907da00c66822309f342.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/83cd4c489f51907da00c66822309f342.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/83cd4c489f51907da00c66822309f342.mp4", + "is_free": 1, + "category": 71480, + "id": 253, + "cnt_like": 36648 +}, { + "title": "GlassWaterIronMan  ", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/084545344859.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/084545692730.mp4", + "is_free": 1, + "category": 12, + "id": 768, + "cnt_like": 722153 +}, { + "title": "girly", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200804/081022085348.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200804/081022360020.mp4", + "is_free": 1, + "category": 1, + "id": 10413, + "cnt_like": 484073 +}, { + "title": "StarryUniverseView  ", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/093358232191.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/093358552183.mp4", + "is_free": 1, + "category": 15, + "id": 943, + "cnt_like": 722330 +}, { + "title": "ghfdhfh", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200526/025406797409.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200526/025407069762.mp4", + "is_free": 1, + "category": 49, + "id": 5481, + "cnt_like": 580260 +}, { + "title": "GreenForestRailroadTrack", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191119/013907574549.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191119/013907941434.mp4", + "is_free": 1, + "category": 4, + "id": 979, + "cnt_like": 722367 +}, { + "title": "lighting", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200803/105150461948.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200803/105150744153.mp4", + "is_free": 1, + "category": 391, + "id": 10333, + "cnt_like": 485266 +}, { + "title": "DTMP", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201207/111557917642.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201207/111558164025.mp4", + "is_free": 1, + "category": 367, + "id": 11312, + "cnt_like": 304740 +}, { + "title": "uchiha", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210621/072027724172.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210621/072027953032.mp4", + "is_free": 1, + "category": 368, + "id": 200121, + "cnt_like": 211544 +}, { + "title": "flowers3", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210104/111242953615.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210104/111243348783.mp4", + "is_free": 1, + "category": 367, + "id": 13579, + "cnt_like": 266690 +}, { + "title": "fbea89fc001f5f8c3c29cfa83c811aca.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/fbea89fc001f5f8c3c29cfa83c811aca.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/fbea89fc001f5f8c3c29cfa83c811aca.mp4", + "is_free": 1, + "category": 46701, + "id": 467, + "cnt_like": 27550 +}, { + "title": "Sea", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200804/075308132878.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200804/075308457532.mp4", + "is_free": 1, + "category": 13, + "id": 10394, + "cnt_like": 484076 +}, { + "title": "Elephant", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200909/104516885168.png", + "preview": "http://d.c-launcher.com/wallpaper_video/20200909/104517481129.mp4", + "is_free": 1, + "category": 402, + "id": 10526, + "cnt_like": 432186 +}, { + "title": "Buttery", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200914/012033692297.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200914/012034353060.mp4", + "is_free": 0, + "category": 374, + "id": 10534, + "cnt_like": 425519 +}, { + "title": "3be129497a24855c58583d03dca35a7b.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/3be129497a24855c58583d03dca35a7b.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/3be129497a24855c58583d03dca35a7b.mp4", + "is_free": 1, + "category": 62241, + "id": 111, + "cnt_like": 94555 +}, { + "title": "emoji", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200806/020717574876.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200806/020717804055.mp4", + "is_free": 1, + "category": 1, + "id": 10466, + "cnt_like": 481612 +}, { + "title": "cdd319d741fe14904fe062bca773aead.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/cdd319d741fe14904fe062bca773aead.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/cdd319d741fe14904fe062bca773aead.mp4", + "is_free": 1, + "category": 50147, + "id": 386, + "cnt_like": 68528 +}, { + "title": "1a03dc2b974295966a49ff6133ae41bc.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/1a03dc2b974295966a49ff6133ae41bc.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/1a03dc2b974295966a49ff6133ae41bc.mp4", + "is_free": 1, + "category": 27986, + "id": 52, + "cnt_like": 92422 +}, { + "title": "SeaCuteAnimals", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191209/095441659486.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191209/095442031090.mp4", + "is_free": 1, + "category": 49, + "id": 901, + "cnt_like": 722287 +}, { + "title": "gsgsdfg", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200526/030753047830.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200526/030753262473.mp4", + "is_free": 0, + "category": 367, + "id": 5484, + "cnt_like": 580199 +}, { + "title": "6cfe90cc764f406d9b0ffa2aacaeac33.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/6cfe90cc764f406d9b0ffa2aacaeac33.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/6cfe90cc764f406d9b0ffa2aacaeac33.mp4", + "is_free": 1, + "category": 67071, + "id": 205, + "cnt_like": 93968 +}, { + "title": "RedMeteor", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/112638237654.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/112638641565.mp4", + "is_free": 1, + "category": 15, + "id": 956, + "cnt_like": 722345 +}, { + "title": "bts", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201218/104958879658.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201218/104959149603.mp4", + "is_free": 1, + "category": 14, + "id": 11368, + "cnt_like": 289031 +}, { + "title": "flash", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201125/120014583483.png", + "preview": "http://d.c-launcher.com/wallpaper_video/20201125/120014789084.mp4", + "is_free": 1, + "category": 1, + "id": 11201, + "cnt_like": 321912 +}, { + "title": "Girl66", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201201/112157093563.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201201/112157400999.mp4", + "is_free": 1, + "category": 1, + "id": 11266, + "cnt_like": 313376 +}, { + "title": "gafdfaf", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200525/102513208923.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200525/102513507705.mp4", + "is_free": 1, + "category": 14, + "id": 5453, + "cnt_like": 581223 +}, { + "title": "135ca6681d0ab422a16e7649b6892f2f.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/135ca6681d0ab422a16e7649b6892f2f.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/135ca6681d0ab422a16e7649b6892f2f.mp4", + "is_free": 1, + "category": 61911, + "id": 35, + "cnt_like": 38988 +}, { + "title": "Iron Man", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201218/105352658113.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201218/105352970587.mp4", + "is_free": 1, + "category": 15, + "id": 11370, + "cnt_like": 289028 +}, { + "title": "7833e754ba53e97db50c173a2d11e64c.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/7833e754ba53e97db50c173a2d11e64c.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/7833e754ba53e97db50c173a2d11e64c.mp4", + "is_free": 1, + "category": 82073, + "id": 232, + "cnt_like": 16112 +}, { + "title": "2eae1b1802d1c5271ab396b109fdbb7a.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/2eae1b1802d1c5271ab396b109fdbb7a.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/2eae1b1802d1c5271ab396b109fdbb7a.mp4", + "is_free": 1, + "category": 41918, + "id": 86, + "cnt_like": 91789 +}, { + "title": "59c46457e54205332b01d2494a19e1a5.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/59c46457e54205332b01d2494a19e1a5.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/59c46457e54205332b01d2494a19e1a5.mp4", + "is_free": 1, + "category": 71058, + "id": 169, + "cnt_like": 42504 +}, { + "title": "cool", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201225/101558598645.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201225/101558989358.mp4", + "is_free": 1, + "category": 367, + "id": 11172, + "cnt_like": 330817 +}, { + "title": "waterfall", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201201/103325144334.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201201/103325402854.mp4", + "is_free": 1, + "category": 1, + "id": 11263, + "cnt_like": 313420 +}, { + "title": "767d1525fe685c007d20f646ab2a43b1.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/767d1525fe685c007d20f646ab2a43b1.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/767d1525fe685c007d20f646ab2a43b1.mp4", + "is_free": 1, + "category": 29820, + "id": 223, + "cnt_like": 32165 +}, { + "title": "cute", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200826/105208630181.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200826/105208866788.mp4", + "is_free": 1, + "category": 394, + "id": 10502, + "cnt_like": 452314 +}, { + "title": "girl", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210319/102940810332.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210319/102941120109.mp4", + "is_free": 1, + "category": 0, + "id": 23694, + "cnt_like": 170326 +}, { + "title": "fsdfsdfsdf", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200525/100855093089.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200525/100855326978.mp4", + "is_free": 0, + "category": 370, + "id": 5431, + "cnt_like": 581167 +}, { + "title": "28c97b5c5238e02c77a5ed8f191471c2.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/28c97b5c5238e02c77a5ed8f191471c2.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/28c97b5c5238e02c77a5ed8f191471c2.mp4", + "is_free": 1, + "category": 63535, + "id": 79, + "cnt_like": 7959 +}, { + "title": " astronaut", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200803/110626242115.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200803/110626537395.mp4", + "is_free": 1, + "category": 391, + "id": 10353, + "cnt_like": 485270 +}, { + "title": "034b34bec07f38500644ad739037cf99.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/034b34bec07f38500644ad739037cf99.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/034b34bec07f38500644ad739037cf99.mp4", + "is_free": 1, + "category": 72172, + "id": 5, + "cnt_like": 16768 +}, { + "title": "5beaedc6e9248ac3cfa39ce3b1db33a3.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/5beaedc6e9248ac3cfa39ce3b1db33a3.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/5beaedc6e9248ac3cfa39ce3b1db33a3.mp4", + "is_free": 1, + "category": 45142, + "id": 175, + "cnt_like": 88755 +}, { + "title": "Love", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/114856149618.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/114856488007.mp4", + "is_free": 1, + "category": 5, + "id": 967, + "cnt_like": 722355 +}, { + "title": "929570d5384e5c9a24588c79d3e76869.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/929570d5384e5c9a24588c79d3e76869.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/929570d5384e5c9a24588c79d3e76869.mp4", + "is_free": 1, + "category": 19425, + "id": 283, + "cnt_like": 20352 +}, { + "title": "d72d01c6eca549ca367f293d37ffa47c.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/d72d01c6eca549ca367f293d37ffa47c.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/d72d01c6eca549ca367f293d37ffa47c.mp4", + "is_free": 1, + "category": 11584, + "id": 407, + "cnt_like": 73233 +}, { + "title": "Yi_49", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191025/031506254796.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191025/031506533421.mp4", + "is_free": 1, + "category": 5, + "id": 830, + "cnt_like": 722216 +}, { + "title": "clock", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200925/120705105400.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200925/120705654818.mp4", + "is_free": 1, + "category": 1, + "id": 10549, + "cnt_like": 409093 +}, { + "title": "Bear", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191209/121526491942.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191209/092415611793.mp4", + "is_free": 1, + "category": 49, + "id": 895, + "cnt_like": 722281 +}, { + "title": "fire", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201204/163206696342.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201204/163206919434.mp4", + "is_free": 1, + "category": 391, + "id": 11301, + "cnt_like": 308769 +}, { + "title": "fe72829bc5fbf234c8441e4a1e23c5e1.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/fe72829bc5fbf234c8441e4a1e23c5e1.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/fe72829bc5fbf234c8441e4a1e23c5e1.mp4", + "is_free": 1, + "category": 84194, + "id": 473, + "cnt_like": 91166 +}, { + "title": "coool", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210127/102919489677.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210127/102919714189.mp4", + "is_free": 1, + "category": 15, + "id": 23656, + "cnt_like": 243739 +}, { + "title": "Shake2", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200708/131257561446.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200708/131257866722.mp4", + "is_free": 1, + "category": 371, + "id": 10310, + "cnt_like": 522499 +}, { + "title": "PinkWave", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191119/085401323981.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191119/085401672840.mp4", + "is_free": 1, + "category": 13, + "id": 1000, + "cnt_like": 722389 +}, { + "title": "2382faa68e1f9ea6edd227f783a71693.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/2382faa68e1f9ea6edd227f783a71693.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/2382faa68e1f9ea6edd227f783a71693.mp4", + "is_free": 1, + "category": 41479, + "id": 69, + "cnt_like": 71251 +}, { + "title": "QUIK", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201207/112632088302.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201207/112632287282.mp4", + "is_free": 1, + "category": 370, + "id": 11315, + "cnt_like": 304736 +}, { + "title": "MOV_31", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191017/100544319939.JPG", + "preview": "http://d.c-launcher.com/wallpaper_video/20191017/100544533503.MOV", + "is_free": 1, + "category": 5, + "id": 803, + "cnt_like": 722189 +}, { + "title": "ClearSeaWater", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191119/024142961490.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191119/024143328630.mp4", + "is_free": 1, + "category": 13, + "id": 996, + "cnt_like": 722385 +}, { + "title": "bob", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210623/092238051444.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210623/092238351366.mp4", + "is_free": 1, + "category": 0, + "id": 200131, + "cnt_like": 209903 +}, { + "title": "SnowScene", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191209/092647958453.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191209/092648373084.mp4", + "is_free": 1, + "category": 49, + "id": 899, + "cnt_like": 722285 +}, { + "title": "a10b973ac7dd5265e4038d914c038abe.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/a10b973ac7dd5265e4038d914c038abe.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/a10b973ac7dd5265e4038d914c038abe.mp4", + "is_free": 1, + "category": 92980, + "id": 305, + "cnt_like": 51360 +}, { + "title": "6c86e53b6954b52b1d819d4eac34efe1.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/6c86e53b6954b52b1d819d4eac34efe1.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/6c86e53b6954b52b1d819d4eac34efe1.mp4", + "is_free": 1, + "category": 29815, + "id": 204, + "cnt_like": 96030 +}, { + "title": "bbab5fc915344ba2a5b28cce39de103f.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/bbab5fc915344ba2a5b28cce39de103f.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/bbab5fc915344ba2a5b28cce39de103f.mp4", + "is_free": 1, + "category": 20706, + "id": 354, + "cnt_like": 85458 +}, { + "title": "LazyTom", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191209/090430792993.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191209/090431136155.mp4", + "is_free": 1, + "category": 49, + "id": 781, + "cnt_like": 722166 +}, { + "title": "060497321dc25e0e0f310e1b4772e3db.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/060497321dc25e0e0f310e1b4772e3db.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/060497321dc25e0e0f310e1b4772e3db.mp4", + "is_free": 1, + "category": 11324, + "id": 9, + "cnt_like": 55078 +}, { + "title": "Clock", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200409/135848888131.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200409/135849328663.mp4", + "is_free": 1, + "category": 391, + "id": 4804, + "cnt_like": 646587 +}, { + "title": "MOV_3535", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191017/092223726603.JPG", + "preview": "http://d.c-launcher.com/wallpaper_video/20191024/095304952294.mp4", + "is_free": 1, + "category": 15, + "id": 785, + "cnt_like": 722170 +}, { + "title": "b682e0d9babc9b96429ea95330f3891d.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/b682e0d9babc9b96429ea95330f3891d.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/b682e0d9babc9b96429ea95330f3891d.mp4", + "is_free": 1, + "category": 40552, + "id": 347, + "cnt_like": 87714 +}, { + "title": "Sea", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200804/075056026992.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200804/075056297617.mp4", + "is_free": 1, + "category": 1, + "id": 10390, + "cnt_like": 484070 +}, { + "title": "AnimeBoy", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/120439111822.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/120439536260.mp4", + "is_free": 1, + "category": 1, + "id": 974, + "cnt_like": 722362 +}, { + "title": "AbstractConstellation", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/100941915880.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/100942367066.mp4", + "is_free": 1, + "category": 15, + "id": 954, + "cnt_like": 722343 +}, { + "title": "Fish", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201110/093659899969.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201110/093700162907.mp4", + "is_free": 1, + "category": 367, + "id": 11133, + "cnt_like": 343539 +}, { + "title": "Yi_55", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191029/034605534515.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191029/034606177785.mp4", + "is_free": 1, + "category": 14, + "id": 835, + "cnt_like": 722221 +}, { + "title": "xueren", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20210113/105104385225.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20210113/105104774314.mp4", + "is_free": 1, + "category": 367, + "id": 18599, + "cnt_like": 258771 +}, { + "title": "7cdd8f14e9747618012923be46343bf9.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/7cdd8f14e9747618012923be46343bf9.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/7cdd8f14e9747618012923be46343bf9.mp4", + "is_free": 1, + "category": 30358, + "id": 239, + "cnt_like": 361 +}, { + "title": "c45c9ba5ddc74a577b6589e9de063360.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/c45c9ba5ddc74a577b6589e9de063360.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/c45c9ba5ddc74a577b6589e9de063360.mp4", + "is_free": 1, + "category": 60615, + "id": 365, + "cnt_like": 23386 +}, { + "title": "fsgsgsaaaa", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200525/102640191949.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200525/102640414501.mp4", + "is_free": 1, + "category": 14, + "id": 5455, + "cnt_like": 581224 +}, { + "title": "landscape", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200804/080942231462.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200804/080942463408.mp4", + "is_free": 1, + "category": 1, + "id": 10412, + "cnt_like": 484078 +}, { + "title": "362bbb5894e9c3923d471b2efc964f05.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/362bbb5894e9c3923d471b2efc964f05.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/362bbb5894e9c3923d471b2efc964f05.mp4", + "is_free": 1, + "category": 75700, + "id": 99, + "cnt_like": 50620 +}, { + "title": "lighting", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200803/104458610127.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200803/104459008654.mp4", + "is_free": 1, + "category": 391, + "id": 10324, + "cnt_like": 485265 +}, { + "title": "4784e95aee5007e40a6a1b4c39188865.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/4784e95aee5007e40a6a1b4c39188865.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/4784e95aee5007e40a6a1b4c39188865.mp4", + "is_free": 1, + "category": 40268, + "id": 129, + "cnt_like": 15599 +}, { + "title": "93fc90fec019a419cfa4f38a520855bc.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/93fc90fec019a419cfa4f38a520855bc.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/93fc90fec019a419cfa4f38a520855bc.mp4", + "is_free": 1, + "category": 36019, + "id": 285, + "cnt_like": 68014 +}, { + "title": "fire", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20201204/163107574309.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20201204/163107814554.mp4", + "is_free": 1, + "category": 391, + "id": 11300, + "cnt_like": 308773 +}, { + "title": "dc9cd6660b9c349e5bfdfb5c4423e111.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/dc9cd6660b9c349e5bfdfb5c4423e111.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/dc9cd6660b9c349e5bfdfb5c4423e111.mp4", + "is_free": 1, + "category": 82142, + "id": 417, + "cnt_like": 91456 +}, { + "title": "ShiningCaptainAmerica  ", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20191118/091411512190.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20191118/091411855410.mp4", + "is_free": 1, + "category": 12, + "id": 940, + "cnt_like": 722327 +}, { + "title": "deabed3b964e57b9285d4cd715f0f2e3.jpg", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/deabed3b964e57b9285d4cd715f0f2e3.jpg", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/deabed3b964e57b9285d4cd715f0f2e3.mp4", + "is_free": 1, + "category": 37663, + "id": 422, + "cnt_like": 77647 +}, { + "title": "b4d771475ee51f39fbd2816021fa9501.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/b4d771475ee51f39fbd2816021fa9501.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/b4d771475ee51f39fbd2816021fa9501.mp4", + "is_free": 1, + "category": 58250, + "id": 345, + "cnt_like": 93902 +}, { + "title": "Sea", + "thumbnail": "http://d.c-launcher.com/wallpaper_video/20200803/110534554895.jpg", + "preview": "http://d.c-launcher.com/wallpaper_video/20200803/110534950027.mp4", + "is_free": 1, + "category": 391, + "id": 10352, + "cnt_like": 485270 +}, { + "title": "eb6269152c45e824d7104400e2970f4b.png", + "thumbnail": "https://cdn.webinnovationstudio.co.in/wallpaper/live_thumb/eb6269152c45e824d7104400e2970f4b.png", + "preview": "https://cdn.webinnovationstudio.co.in/wallpaper/live/eb6269152c45e824d7104400e2970f4b.mp4", + "is_free": 1, + "category": 19897, + "id": 439, + "cnt_like": 75255 +}] \ No newline at end of file diff --git a/app/src/main/java/com/timber/soft/mylivewallpaper/activity/BaseActivity.kt b/app/src/main/java/com/timber/soft/mylivewallpaper/activity/BaseActivity.kt new file mode 100644 index 0000000..1743c2c --- /dev/null +++ b/app/src/main/java/com/timber/soft/mylivewallpaper/activity/BaseActivity.kt @@ -0,0 +1,25 @@ +package com.timber.soft.mylivewallpaper.activity + +import android.graphics.Color +import android.os.Build +import android.os.Bundle +import android.view.View +import androidx.appcompat.app.AppCompatActivity + +abstract class BaseActivity : AppCompatActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContentView(getActivityContentView()) + initViews() + } + + open fun initViews() { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { + window.decorView.systemUiVisibility = + (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN or View.SYSTEM_UI_FLAG_LAYOUT_STABLE) or View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR + window.statusBarColor = Color.TRANSPARENT + } + } + + abstract fun getActivityContentView(): View +} \ No newline at end of file diff --git a/app/src/main/java/com/timber/soft/mylivewallpaper/activity/MainActivity.kt b/app/src/main/java/com/timber/soft/mylivewallpaper/activity/MainActivity.kt new file mode 100644 index 0000000..a06a224 --- /dev/null +++ b/app/src/main/java/com/timber/soft/mylivewallpaper/activity/MainActivity.kt @@ -0,0 +1,23 @@ +package com.timber.soft.mylivewallpaper.activity + +import android.os.Bundle +import android.view.View +import androidx.activity.enableEdgeToEdge +import androidx.appcompat.app.AppCompatActivity +import androidx.core.view.ViewCompat +import androidx.core.view.WindowInsetsCompat +import com.timber.soft.mylivewallpaper.R +import com.timber.soft.mylivewallpaper.databinding.ActivityMainBinding + +class MainActivity : BaseActivity() { + private lateinit var binding: ActivityMainBinding + override fun getActivityContentView(): View { + binding = ActivityMainBinding.inflate(layoutInflater) + return binding.root + } + + override fun initViews() { + super.initViews() + + } +} \ No newline at end of file diff --git a/app/src/main/java/com/timber/soft/mylivewallpaper/activity/StartActivity.kt b/app/src/main/java/com/timber/soft/mylivewallpaper/activity/StartActivity.kt new file mode 100644 index 0000000..b6fac01 --- /dev/null +++ b/app/src/main/java/com/timber/soft/mylivewallpaper/activity/StartActivity.kt @@ -0,0 +1,44 @@ +package com.timber.soft.mylivewallpaper.activity + +import android.content.Intent +import android.view.View +import com.timber.soft.mylivewallpaper.databinding.ActivityStartBinding +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.cancel +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch + +class StartActivity : BaseActivity() { + private lateinit var binding: ActivityStartBinding + private val coroutineScope = CoroutineScope(Dispatchers.Main) + private val countTime: Long = 2000 + + + override fun initViews() { + super.initViews() + + coroutineScope.launch { + delay(countTime) + startMainActivity() + } + + } + + override fun getActivityContentView(): View { + binding = ActivityStartBinding.inflate(layoutInflater) + return binding.root + } + + private fun startMainActivity() { + val intent = Intent(this, MainActivity::class.java) + startActivity(intent) + finish() // 结束当前的启动页 + } + + override fun onDestroy() { + super.onDestroy() + coroutineScope.cancel() // 取消协程以防止内存泄漏 + } + +} \ No newline at end of file diff --git a/app/src/main/java/com/timber/soft/mylivewallpaper/adapter/ViewPagerAdapter.kt b/app/src/main/java/com/timber/soft/mylivewallpaper/adapter/ViewPagerAdapter.kt new file mode 100644 index 0000000..69e8de9 --- /dev/null +++ b/app/src/main/java/com/timber/soft/mylivewallpaper/adapter/ViewPagerAdapter.kt @@ -0,0 +1,14 @@ +package com.timber.soft.mylivewallpaper.adapter + +import androidx.fragment.app.Fragment +import androidx.fragment.app.FragmentPagerAdapter + +class ViewPagerAdapter : FragmentPagerAdapter() { + override fun getCount(): Int { + TODO("Not yet implemented") + } + + override fun getItem(position: Int): Fragment { + TODO("Not yet implemented") + } +} \ No newline at end of file diff --git a/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/BaseFragment.kt b/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/BaseFragment.kt new file mode 100644 index 0000000..b0cc550 --- /dev/null +++ b/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/BaseFragment.kt @@ -0,0 +1,28 @@ +package com.timber.soft.mylivewallpaper.fragment + + +import android.os.Bundle +import android.view.LayoutInflater +import android.view.View +import android.view.ViewGroup +import androidx.fragment.app.Fragment + +abstract class BaseFragment : Fragment() { + + override fun onCreateView( + inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? + ): View? { + return getFragmentContentView() + } + + override fun onViewCreated(view: View, savedInstanceState: Bundle?) { + super.onViewCreated(view, savedInstanceState) + initViews() + } + + open fun initViews() { + + } + + abstract fun getFragmentContentView(): View +} \ No newline at end of file diff --git a/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/CollectFragment.kt b/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/CollectFragment.kt new file mode 100644 index 0000000..45c8de0 --- /dev/null +++ b/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/CollectFragment.kt @@ -0,0 +1,9 @@ +package com.timber.soft.mylivewallpaper.fragment + +import android.view.View + +class CollectFragment :BaseFragment(){ + override fun getFragmentContentView(): View { + TODO("Not yet implemented") + } +} \ No newline at end of file diff --git a/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/HomeFragment.kt b/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/HomeFragment.kt new file mode 100644 index 0000000..80b2f37 --- /dev/null +++ b/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/HomeFragment.kt @@ -0,0 +1,4 @@ +package com.timber.soft.mylivewallpaper.fragment + +class HomeFragment { +} \ No newline at end of file diff --git a/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/SettingFragment.kt b/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/SettingFragment.kt new file mode 100644 index 0000000..5ff44eb --- /dev/null +++ b/app/src/main/java/com/timber/soft/mylivewallpaper/fragment/SettingFragment.kt @@ -0,0 +1,9 @@ +package com.timber.soft.mylivewallpaper.fragment + +import android.view.View + +class SettingFragment :BaseFragment(){ + override fun getFragmentContentView(): View { + TODO("Not yet implemented") + } +} \ No newline at end of file diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..2ac34c2 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,24 @@ + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_start.xml b/app/src/main/res/layout/activity_start.xml new file mode 100644 index 0000000..ebc36b9 --- /dev/null +++ b/app/src/main/res/layout/activity_start.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml new file mode 100644 index 0000000..58773c2 --- /dev/null +++ b/app/src/main/res/values-night/themes.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..ddedc13 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,8 @@ + + + #FF000000 + #FFFFFFFF + #3095DE + #CFEBFF + #B4DEFE + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..57304fe --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ + + MyLiveWallpaper + + + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..afdc993 --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,9 @@ + + + + +