Backgrounds: Convert to ThemePicker plugin
Signed-off-by: Joey <joey@lineageos.org>
Change-Id: Id712abb130768a5c31785e7a91b889a65f169adb
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 09b993d..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-*.iml
-.gradle
-/local.properties
-/.idea
-.DS_Store
-/build
-/captures
-.externalNativeBuild
diff --git a/app/src/main/Android.mk b/Android.mk
similarity index 77%
rename from app/src/main/Android.mk
rename to Android.mk
index b14a0b8..9d59a35 100644
--- a/app/src/main/Android.mk
+++ b/Android.mk
@@ -35,23 +35,10 @@
endif
endif
-LOCAL_SRC_FILES := \
- $(call all-java-files-under, java)
-
LOCAL_USE_AAPT2 := true
-LOCAL_STATIC_ANDROID_LIBRARIES := \
- androidx.annotation_annotation \
- androidx.appcompat_appcompat \
- androidx.palette_palette \
- androidx.recyclerview_recyclerview \
- androidx.transition_transition \
- com.google.android.material_material
-
LOCAL_PACKAGE_NAME := Backgrounds
-LOCAL_PROGUARD_FLAG_FILES := ../../proguard-rules.pro
-
LOCAL_AAPT_FLAGS := --auto-add-overlay
LOCAL_SDK_VERSION := current
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..afe435a
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,29 @@
+<!--
+ Copyright (C) 2020 The LineageOS Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ package="org.lineageos.backgrounds">
+
+ <application android:label="@string/app_name">
+
+ <receiver android:name=".LineageBackgrounds">
+ <intent-filter>
+ <action android:name="com.android.launcher3.action.PARTNER_CUSTOMIZATION"/>
+ </intent-filter>
+ </receiver>
+
+ </application>
+</manifest>
diff --git a/app/.gitignore b/app/.gitignore
deleted file mode 100644
index 796b96d..0000000
--- a/app/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/build
diff --git a/app/build.gradle b/app/build.gradle
deleted file mode 100644
index 224739e..0000000
--- a/app/build.gradle
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-apply plugin: 'com.android.application'
-
-android {
- compileSdkVersion 28
-
- defaultConfig {
- applicationId "org.lineageos.backgrounds"
- minSdkVersion 27
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- }
-
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
-
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
-
- sourceSets {
- main {
- res.srcDirs = ['src/main/res', 'src/main/res_1080p/full', 'src/main/res_1080p/common']
- }
- }
-}
-
-dependencies {
- implementation 'androidx.appcompat:appcompat:1.0.2'
- implementation 'androidx.palette:palette:1.0.0'
- implementation 'androidx.recyclerview:recyclerview:1.0.0'
- implementation 'com.google.android.material:material:1.0.0'
-}
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
deleted file mode 100644
index f1b4245..0000000
--- a/app/proguard-rules.pro
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
deleted file mode 100644
index 9332d06..0000000
--- a/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="org.lineageos.backgrounds">
-
- <uses-permission android:name="android.permission.SET_WALLPAPER" />
-
- <application
- android:allowBackup="false"
- android:appCategory="image"
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:supportsRtl="true"
- android:theme="@style/AppTheme"
- tools:ignore="GoogleAppIndexingWarning">
-
- <activity
- android:name=".ui.MainActivity"
- android:excludeFromRecents="true"
- android:resizeableActivity="false"
- android:theme="@style/AppTheme.TranslucentNav">
- <intent-filter>
- <action android:name="android.intent.action.SET_WALLPAPER" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- </activity>
-
- <activity
- android:name=".ui.ApplyActivity"
- android:excludeFromRecents="true"
- android:resizeableActivity="false"
- android:theme="@style/AppTheme.PrimaryNav" />
-
- <provider
- android:name="androidx.core.content.FileProvider"
- android:authorities="org.lineageos.backgrounds.files"
- android:exported="false"
- android:grantUriPermissions="true">
- <meta-data
- android:name="android.support.FILE_PROVIDER_PATHS"
- android:resource="@xml/provider_paths" />
- </provider>
- </application>
-</manifest>
diff --git a/app/src/main/java/org/lineageos/backgrounds/adapters/WallsAdapter.java b/app/src/main/java/org/lineageos/backgrounds/adapters/WallsAdapter.java
deleted file mode 100644
index a4d0b6d..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/adapters/WallsAdapter.java
+++ /dev/null
@@ -1,98 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.adapters;
-
-import android.view.LayoutInflater;
-import android.view.ViewGroup;
-
-import androidx.annotation.NonNull;
-import androidx.recyclerview.widget.DiffUtil;
-import androidx.recyclerview.widget.RecyclerView;
-
-import org.lineageos.backgrounds.R;
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.bundle.WallpaperType;
-import org.lineageos.backgrounds.holders.UserHolder;
-import org.lineageos.backgrounds.holders.WallpaperHolder;
-import org.lineageos.backgrounds.ui.SelectionInterface;
-import org.lineageos.backgrounds.util.TypeConverter;
-
-import java.util.ArrayList;
-import java.util.List;
-
-public final class WallsAdapter extends RecyclerView.Adapter<WallpaperHolder> {
- private final SelectionInterface mCallback;
- private List<WallpaperBundle> mData = new ArrayList<>();
-
- public WallsAdapter(@NonNull final SelectionInterface callback) {
- mCallback = callback;
- }
-
- @NonNull
- @Override
- public WallpaperHolder onCreateViewHolder(@NonNull final ViewGroup parent,
- final int viewType) {
- final WallpaperType type = TypeConverter.intToWallpaperType(viewType);
-
- switch (type) {
- case BUILT_IN:
- case DEFAULT:
- case GRADIENT:
- case MONO:
- return buildDefaultHolder(parent);
- default:
- return buildUserHolder(parent);
- }
- }
-
- @Override
- public void onBindViewHolder(final @NonNull WallpaperHolder holder, final int position) {
- final WallpaperBundle bundle = mData.get(position);
- holder.bind(bundle);
- }
-
- @Override
- public int getItemCount() {
- return mData.size();
- }
-
- @Override
- public int getItemViewType(final int position) {
- return TypeConverter.wallpaperTypeToInt(mData.get(position).getType());
- }
-
- public void setData(final List<WallpaperBundle> data) {
- final WallsDiffCallback callback = new WallsDiffCallback(mData, data);
- DiffUtil.calculateDiff(callback).dispatchUpdatesTo(this);
- mData = data;
- }
-
- // Reified generics when java?
-
- @NonNull
- private WallpaperHolder buildDefaultHolder(@NonNull final ViewGroup parent) {
- LayoutInflater inflater = LayoutInflater.from(parent.getContext());
- return new WallpaperHolder(inflater.inflate(R.layout.item_wallpaper,
- parent, false), mCallback);
- }
-
- @NonNull
- private UserHolder buildUserHolder(@NonNull final ViewGroup parent) {
- LayoutInflater inflater = LayoutInflater.from(parent.getContext());
- return new UserHolder(inflater.inflate(R.layout.item_wallpaper,
- parent, false), mCallback);
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/adapters/WallsDiffCallback.java b/app/src/main/java/org/lineageos/backgrounds/adapters/WallsDiffCallback.java
deleted file mode 100644
index 37379ad..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/adapters/WallsDiffCallback.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.adapters;
-
-import androidx.annotation.NonNull;
-import androidx.recyclerview.widget.DiffUtil;
-
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-
-import java.util.List;
-
-final class WallsDiffCallback extends DiffUtil.Callback {
- @NonNull
- private final List<WallpaperBundle> mOld;
-
- @NonNull
- private final List<WallpaperBundle> mNew;
-
- WallsDiffCallback(@NonNull final List<WallpaperBundle> oldList,
- @NonNull final List<WallpaperBundle> newList) {
- mOld = oldList;
- mNew = newList;
- }
-
- @Override
- public int getOldListSize() {
- return mOld.size();
- }
-
- @Override
- public int getNewListSize() {
- return mNew.size();
- }
-
- @Override
- public boolean areItemsTheSame(final int oldItemPosition,
- final int newItemPosition) {
- return mOld.get(oldItemPosition).getName().equals(mNew.get(newItemPosition).getName());
- }
-
- @Override
- public boolean areContentsTheSame(final int oldItemPosition,
- final int newItemPosition) {
- return mOld.get(oldItemPosition).equals(mNew.get(newItemPosition));
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/bundle/WallpaperBundle.java b/app/src/main/java/org/lineageos/backgrounds/bundle/WallpaperBundle.java
deleted file mode 100644
index 5922d51..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/bundle/WallpaperBundle.java
+++ /dev/null
@@ -1,118 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.bundle;
-
-import android.graphics.drawable.Drawable;
-import android.os.Parcel;
-import android.os.Parcelable;
-
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-
-import org.lineageos.backgrounds.util.TypeConverter;
-
-public final class WallpaperBundle implements Parcelable {
- public static final int DESCRIPTOR_EMPTY = -1;
- public static final Creator<WallpaperBundle> CREATOR = new Creator<WallpaperBundle>() {
- @Override
- public WallpaperBundle createFromParcel(@NonNull final Parcel in) {
- return new WallpaperBundle(in);
- }
-
- @Override
- public WallpaperBundle[] newArray(int size) {
- return new WallpaperBundle[size];
- }
- };
-
- @NonNull
- private final String mName;
-
- @Nullable
- private final Drawable mContentDrawable;
-
- /*
- * Can be both color or resource drawable
- */
- private final int mDescriptor;
-
- @NonNull
- private final WallpaperType mType;
-
- public WallpaperBundle(@NonNull final String name,
- @Nullable final Drawable contentDrawable,
- int descriptor,
- @NonNull final WallpaperType type) {
- mName = name;
- mContentDrawable = contentDrawable;
- mDescriptor = descriptor;
- mType = type;
- }
-
- private WallpaperBundle(@NonNull final Parcel parcel) {
- final String parcelName = parcel.readString();
- mName = parcelName == null ? "" : parcelName;
- mContentDrawable = null;
- mDescriptor = parcel.readInt();
- mType = TypeConverter.intToWallpaperType(parcel.readInt());
- }
-
- @NonNull
- public final String getName() {
- return mName;
- }
-
- @Nullable
- public final Drawable getContentDrawable() {
- return mContentDrawable;
- }
-
- @NonNull
- public final WallpaperType getType() {
- return mType;
- }
-
- public final int getDescriptor() {
- return mDescriptor;
- }
-
- @Override
- public boolean equals(@Nullable Object other) {
- if (!(other instanceof WallpaperBundle)) {
- return false;
- }
-
- WallpaperBundle otherBundle = (WallpaperBundle) other;
- return otherBundle.mType == mType && otherBundle.mContentDrawable == mContentDrawable;
- }
-
- @Override
- public int hashCode() {
- return mType.hashCode() + (mContentDrawable == null ? 0 : mContentDrawable.hashCode());
- }
-
- @Override
- public int describeContents() {
- return 0;
- }
-
- @Override
- public void writeToParcel(@NonNull final Parcel dest, final int flags) {
- dest.writeString(mName);
- dest.writeInt(mDescriptor);
- dest.writeInt(TypeConverter.wallpaperTypeToInt(mType));
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/bundle/WallpaperType.java b/app/src/main/java/org/lineageos/backgrounds/bundle/WallpaperType.java
deleted file mode 100644
index fdf7b01..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/bundle/WallpaperType.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.bundle;
-
-public enum WallpaperType {
- BUILT_IN,
- DEFAULT,
- GRADIENT,
- MONO,
- USER
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/factory/BuiltInWallpaperFactory.java b/app/src/main/java/org/lineageos/backgrounds/factory/BuiltInWallpaperFactory.java
deleted file mode 100644
index 7508d3c..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/factory/BuiltInWallpaperFactory.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.factory;
-
-import android.app.WallpaperManager;
-import android.content.res.Resources;
-import android.graphics.drawable.Drawable;
-
-import androidx.annotation.DrawableRes;
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.R;
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.bundle.WallpaperType;
-
-public final class BuiltInWallpaperFactory {
-
- private BuiltInWallpaperFactory() {
- }
-
- public static WallpaperBundle build(@NonNull final String name,
- @NonNull final Resources res,
- @DrawableRes final int drawableRes) {
- Drawable drawable = res.getDrawable(drawableRes, res.newTheme());
- return new WallpaperBundle(name, drawable, drawableRes, WallpaperType.BUILT_IN);
- }
-
- public static WallpaperBundle buildDefault(@NonNull Resources res,
- @NonNull WallpaperManager manager) {
- final String name = res.getString(R.string.wallpaper_built_in_system);
- final Drawable drawable = manager.getBuiltInDrawable();
-
- return new WallpaperBundle(name, drawable,
- WallpaperBundle.DESCRIPTOR_EMPTY, WallpaperType.DEFAULT);
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/factory/GradientWallpaperFactory.java b/app/src/main/java/org/lineageos/backgrounds/factory/GradientWallpaperFactory.java
deleted file mode 100644
index 574d433..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/factory/GradientWallpaperFactory.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.factory;
-
-import android.content.res.Resources;
-import android.graphics.drawable.Drawable;
-
-import androidx.annotation.DrawableRes;
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.bundle.WallpaperType;
-
-public final class GradientWallpaperFactory {
-
- private GradientWallpaperFactory() {
- }
-
- public static WallpaperBundle build(@NonNull final String name,
- @NonNull final Resources res,
- @DrawableRes final int drawableRes) {
- Drawable drawable = res.getDrawable(drawableRes, res.newTheme());
- return new WallpaperBundle(name, drawable, drawableRes, WallpaperType.GRADIENT);
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/factory/MonoWallpaperFactory.java b/app/src/main/java/org/lineageos/backgrounds/factory/MonoWallpaperFactory.java
deleted file mode 100644
index 005e945..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/factory/MonoWallpaperFactory.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.factory;
-
-import android.graphics.drawable.ColorDrawable;
-
-import androidx.annotation.ColorInt;
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.bundle.WallpaperType;
-
-public final class MonoWallpaperFactory {
-
- private MonoWallpaperFactory() {
- }
-
- public static WallpaperBundle build(@NonNull String name,
- @ColorInt final int color) {
- return new WallpaperBundle(name, new ColorDrawable(color), color, WallpaperType.MONO);
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/factory/UserWallpaperFactory.java b/app/src/main/java/org/lineageos/backgrounds/factory/UserWallpaperFactory.java
deleted file mode 100644
index a36c43f..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/factory/UserWallpaperFactory.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.factory;
-
-import android.content.res.Resources;
-import android.graphics.drawable.Drawable;
-
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.R;
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.bundle.WallpaperType;
-
-public final class UserWallpaperFactory {
-
- private UserWallpaperFactory() {
- }
-
- @NonNull
- public static WallpaperBundle build(@NonNull Resources res) {
- String name = res.getString(R.string.main_wallpaper_pick);
- Drawable drawable = res.getDrawable(R.drawable.ic_wallpaper_add_local, res.newTheme());
-
- return new WallpaperBundle(name, drawable,
- WallpaperBundle.DESCRIPTOR_EMPTY, WallpaperType.USER);
- }
-
- @NonNull
- public static WallpaperBundle build(@NonNull String path) {
- return new WallpaperBundle(path, null,
- WallpaperBundle.DESCRIPTOR_EMPTY, WallpaperType.USER);
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/holders/UserHolder.java b/app/src/main/java/org/lineageos/backgrounds/holders/UserHolder.java
deleted file mode 100644
index 86d906e..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/holders/UserHolder.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.holders;
-
-import android.view.View;
-
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.ui.SelectionInterface;
-
-public final class UserHolder extends WallpaperHolder {
-
- public UserHolder(@NonNull final View itemView,
- @NonNull final SelectionInterface callback) {
- super(itemView, callback);
- }
-
- @Override
- public void bind(@NonNull final WallpaperBundle bundle) {
- super.bind(bundle);
-
- itemView.setOnClickListener(v -> callback.onWallpaperSelected(previewView, null));
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/holders/WallpaperHolder.java b/app/src/main/java/org/lineageos/backgrounds/holders/WallpaperHolder.java
deleted file mode 100644
index 55e7554..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/holders/WallpaperHolder.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.holders;
-
-import android.graphics.drawable.Drawable;
-import android.view.View;
-import android.widget.ImageView;
-import android.widget.TextView;
-
-import androidx.annotation.NonNull;
-import androidx.recyclerview.widget.RecyclerView;
-
-import org.lineageos.backgrounds.R;
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.ui.SelectionInterface;
-import org.lineageos.backgrounds.util.ColorUtils;
-
-public class WallpaperHolder extends RecyclerView.ViewHolder {
- @NonNull
- final SelectionInterface callback;
-
- ImageView previewView;
-
- public WallpaperHolder(@NonNull View itemView,
- @NonNull SelectionInterface callback) {
- super(itemView);
- this.callback = callback;
- }
-
- public void bind(@NonNull final WallpaperBundle bundle) {
- previewView = itemView.findViewById(R.id.item_wallpaper_preview);
- TextView nameView = itemView.findViewById(R.id.item_wallpaper_name);
-
- // We can't set this in xml layout: https://issuetracker.google.com/issues/37036728
- itemView.setClipToOutline(true);
-
- Drawable drawable = bundle.getContentDrawable();
- if (drawable != null) {
- previewView.setImageDrawable(drawable);
-
- // Tint title for contrast
- final int color = ColorUtils.extractContrastColor(ColorUtils.extractPaletteFromBottom(drawable));
- nameView.setTextColor(color);
- }
-
- String name = bundle.getName();
- nameView.setText(name);
-
- itemView.setOnClickListener((v) -> callback.onWallpaperSelected(previewView, bundle));
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/task/ApplyWallpaperImpl.java b/app/src/main/java/org/lineageos/backgrounds/task/ApplyWallpaperImpl.java
deleted file mode 100644
index f62f6e4..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/task/ApplyWallpaperImpl.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.task;
-
-import android.app.WallpaperManager;
-import android.graphics.Bitmap;
-import android.graphics.drawable.Drawable;
-import android.util.Log;
-
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.util.TypeConverter;
-
-import java.io.IOException;
-
-final class ApplyWallpaperImpl {
- private static final String TAG = "ApplyWallpaperImpl";
-
- @NonNull
- private final Callback mCallback;
-
- ApplyWallpaperImpl(@NonNull final Callback callback) {
- mCallback = callback;
- }
-
- boolean apply(@NonNull final Drawable drawable) {
- final Bitmap bm = TypeConverter.drawableToBitmap(drawable);
- final WallpaperManager manager = mCallback.getWallpaperManager();
-
- try {
- manager.setBitmap(bm, null, true, mCallback.getFlags());
- return true;
- } catch (IOException e) {
- Log.e(TAG, e.getMessage(), e);
- return false;
- }
- }
-
- interface Callback {
-
- @NonNull
- WallpaperManager getWallpaperManager();
-
- int getFlags();
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/task/ApplyWallpaperTask.java b/app/src/main/java/org/lineageos/backgrounds/task/ApplyWallpaperTask.java
deleted file mode 100644
index 3fad971..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/task/ApplyWallpaperTask.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.task;
-
-import android.app.WallpaperManager;
-import android.graphics.drawable.Drawable;
-import android.os.AsyncTask;
-
-import androidx.annotation.NonNull;
-
-public final class ApplyWallpaperTask extends AsyncTask<Drawable, Void, Boolean> implements
- ApplyWallpaperImpl.Callback {
- @NonNull
- private final Callback mCallbacks;
-
- public ApplyWallpaperTask(@NonNull final Callback callbacks) {
- mCallbacks = callbacks;
- }
-
- @Override
- protected Boolean doInBackground(@NonNull Drawable... drawables) {
- final Drawable drawable = drawables[0];
- return new ApplyWallpaperImpl(this).apply(drawable);
- }
-
- @Override
- protected void onPostExecute(Boolean result) {
- super.onPostExecute(result);
- mCallbacks.onCompleted(result);
- }
-
- @NonNull
- @Override
- public WallpaperManager getWallpaperManager() {
- return mCallbacks.getWallpaperManager();
- }
-
- @Override
- public int getFlags() {
- return mCallbacks.getFlags();
- }
-
- public interface Callback {
- void onCompleted(final boolean result);
-
- @NonNull
- WallpaperManager getWallpaperManager();
-
- int getFlags();
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/task/FetchDataImpl.java b/app/src/main/java/org/lineageos/backgrounds/task/FetchDataImpl.java
deleted file mode 100644
index 361c682..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/task/FetchDataImpl.java
+++ /dev/null
@@ -1,110 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.task;
-
-import android.app.WallpaperManager;
-import android.content.res.Resources;
-import android.content.res.TypedArray;
-import android.graphics.Color;
-
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.R;
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.factory.BuiltInWallpaperFactory;
-import org.lineageos.backgrounds.factory.GradientWallpaperFactory;
-import org.lineageos.backgrounds.factory.MonoWallpaperFactory;
-import org.lineageos.backgrounds.factory.UserWallpaperFactory;
-
-import java.util.ArrayList;
-import java.util.List;
-
-final class FetchDataImpl {
- private final List<WallpaperBundle> mData = new ArrayList<>();
- private final Callback mCallbacks;
-
- FetchDataImpl(@NonNull final Callback callbacks) {
- mCallbacks = callbacks;
- }
-
- @NonNull
- List<WallpaperBundle> fetchData() {
- addUser();
- addBuiltIn();
- addColors();
- addGradients();
-
- return mData;
- }
-
- private void addUser() {
- mData.add(UserWallpaperFactory.build(mCallbacks.getResources()));
- }
-
- private void addBuiltIn() {
- Resources res = mCallbacks.getResources();
-
- // System wallpaper first
- WallpaperManager manager = mCallbacks.getWallpaperManager();
- mData.add(BuiltInWallpaperFactory.buildDefault(res, manager));
-
- // Other built-in
- String[] names = res.getStringArray(R.array.wallpaper_built_in_names);
- TypedArray drawables = res.obtainTypedArray(R.array.wallpaper_built_in_drawables);
- for (int i = 0; i < drawables.length(); i++) {
- final int resourceId = drawables.getResourceId(i, 0);
- if (resourceId != 0) {
- mData.add(BuiltInWallpaperFactory.build(names[i], res, resourceId));
- }
- }
-
- drawables.recycle();
- }
-
- private void addColors() {
- Resources res = mCallbacks.getResources();
- String[] names = res.getStringArray(R.array.wallpaper_mono_names);
- TypedArray colors = res.obtainTypedArray(R.array.wallpaper_mono_colors);
- for (int i = 0; i < colors.length(); i++) {
- final int color = colors.getColor(i, Color.BLACK);
- mData.add(MonoWallpaperFactory.build(names[i], color));
- }
-
- colors.recycle();
- }
-
- private void addGradients() {
- Resources res = mCallbacks.getResources();
- String[] names = res.getStringArray(R.array.wallpaper_gradient_names);
- TypedArray gradients = res.obtainTypedArray(R.array.wallpaper_gradient_drawables);
- for (int i = 0; i < gradients.length(); i++) {
- final int resourceId = gradients.getResourceId(i, 0);
- if (resourceId != 0) {
- mData.add(GradientWallpaperFactory.build(names[i], res, resourceId));
- }
- }
-
- gradients.recycle();
- }
-
- public interface Callback {
- @NonNull
- Resources getResources();
-
- @NonNull
- WallpaperManager getWallpaperManager();
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/task/FetchDataTask.java b/app/src/main/java/org/lineageos/backgrounds/task/FetchDataTask.java
deleted file mode 100644
index 86a3ddd..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/task/FetchDataTask.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.task;
-
-import android.app.WallpaperManager;
-import android.content.res.Resources;
-import android.os.AsyncTask;
-
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-
-import java.util.List;
-
-public final class FetchDataTask extends AsyncTask<Void, Integer, List<WallpaperBundle>> implements
- FetchDataImpl.Callback {
- private final FetchDataTask.Callback mCallbacks;
-
- public FetchDataTask(@NonNull final FetchDataTask.Callback taskCallback) {
- mCallbacks = taskCallback;
- }
-
- @Override
- protected List<WallpaperBundle> doInBackground(Void[] params) {
- return new FetchDataImpl(this).fetchData();
- }
-
- @Override
- protected void onPostExecute(List<WallpaperBundle> result) {
- mCallbacks.onCompleted(result);
- }
-
- @NonNull
- @Override
- public Resources getResources() {
- return mCallbacks.getResources();
- }
-
- @NonNull
- @Override
- public WallpaperManager getWallpaperManager() {
- return mCallbacks.getWallpaperManager();
- }
-
- public interface Callback {
- void onCompleted(@NonNull final List<WallpaperBundle> data);
-
- @NonNull
- Resources getResources();
-
- @NonNull
- WallpaperManager getWallpaperManager();
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/task/LoadDrawableFromUriImpl.java b/app/src/main/java/org/lineageos/backgrounds/task/LoadDrawableFromUriImpl.java
deleted file mode 100644
index 271265d..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/task/LoadDrawableFromUriImpl.java
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.task;
-
-import android.content.ContentResolver;
-import android.content.res.Resources;
-import android.graphics.Bitmap;
-import android.graphics.BitmapFactory;
-import android.graphics.drawable.BitmapDrawable;
-import android.graphics.drawable.Drawable;
-import android.net.Uri;
-import android.os.ParcelFileDescriptor;
-
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-
-import java.io.FileDescriptor;
-import java.io.IOException;
-
-final class LoadDrawableFromUriImpl {
- @NonNull
- private final Callback mCallbacks;
-
- LoadDrawableFromUriImpl(@NonNull final Callback callback) {
- mCallbacks = callback;
- }
-
- @Nullable
- Drawable fetchDrawableFromUri(@NonNull final String uriString) {
- Uri uri = Uri.parse(uriString);
- try {
- ParcelFileDescriptor parcelDescriptor = mCallbacks.getContentResolver()
- .openFileDescriptor(uri, "r");
- if (parcelDescriptor == null) {
- return null;
- }
-
- FileDescriptor fileDescriptor = parcelDescriptor.getFileDescriptor();
- Bitmap bm = BitmapFactory.decodeFileDescriptor(fileDescriptor);
- bm.setDensity(Bitmap.DENSITY_NONE);
- return new BitmapDrawable(mCallbacks.getResources(), bm);
- } catch (IOException e) {
- return null;
- }
-
- }
-
- public interface Callback {
- @NonNull
- ContentResolver getContentResolver();
-
- @NonNull
- Resources getResources();
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/task/LoadDrawableFromUriTask.java b/app/src/main/java/org/lineageos/backgrounds/task/LoadDrawableFromUriTask.java
deleted file mode 100644
index 0482c43..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/task/LoadDrawableFromUriTask.java
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.task;
-
-import android.content.ContentResolver;
-import android.content.res.Resources;
-import android.graphics.drawable.Drawable;
-import android.os.AsyncTask;
-
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-
-public final class LoadDrawableFromUriTask extends AsyncTask<String, Void, Drawable> implements
- LoadDrawableFromUriImpl.Callback {
- @NonNull
- private final Callback mCallback;
-
- public LoadDrawableFromUriTask(@NonNull final Callback callback) {
- mCallback = callback;
- }
-
- @Override
- protected Drawable doInBackground(@NonNull final String... strings) {
- String arg = strings[0];
- return new LoadDrawableFromUriImpl(this).fetchDrawableFromUri(arg);
- }
-
- @Override
- protected void onPostExecute(@Nullable final Drawable drawable) {
- super.onPostExecute(drawable);
- mCallback.onCompleted(drawable);
- }
-
- @NonNull
- @Override
- public ContentResolver getContentResolver() {
- return mCallback.getContentResolver();
- }
-
- @NonNull
- @Override
- public Resources getResources() {
- return mCallback.getResources();
- }
-
- public interface Callback {
- void onCompleted(@Nullable final Drawable drawable);
-
- @NonNull
- ContentResolver getContentResolver();
-
- @NonNull
- Resources getResources();
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/ui/ApplyActivity.java b/app/src/main/java/org/lineageos/backgrounds/ui/ApplyActivity.java
deleted file mode 100644
index 4449d05..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/ui/ApplyActivity.java
+++ /dev/null
@@ -1,281 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.ui;
-
-import android.annotation.SuppressLint;
-import android.app.WallpaperManager;
-import android.content.ContentResolver;
-import android.content.res.Resources;
-import android.graphics.Bitmap;
-import android.graphics.drawable.BitmapDrawable;
-import android.graphics.drawable.Drawable;
-import android.os.Bundle;
-import android.os.Handler;
-import android.view.HapticFeedbackConstants;
-import android.view.View;
-import android.widget.ImageView;
-import android.widget.LinearLayout;
-import android.widget.TextView;
-import android.widget.Toast;
-
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-import androidx.appcompat.app.AppCompatActivity;
-import androidx.core.content.ContextCompat;
-
-import com.google.android.material.bottomsheet.BottomSheetBehavior;
-
-import org.lineageos.backgrounds.R;
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.task.ApplyWallpaperTask;
-import org.lineageos.backgrounds.task.LoadDrawableFromUriTask;
-import org.lineageos.backgrounds.util.ColorUtils;
-import org.lineageos.backgrounds.util.TypeConverter;
-import org.lineageos.backgrounds.util.UiUtils;
-
-public final class ApplyActivity extends AppCompatActivity {
- public static final String EXTRA_TRANSITION_NAME = "transition_shared_preview";
- static final String EXTRA_WALLPAPER = "apply_extra_wallpaper_parcel";
-
- private static final int BOTH_FLAG = WallpaperManager.FLAG_SYSTEM | WallpaperManager.FLAG_LOCK;
- private static final int HOME_FLAG = WallpaperManager.FLAG_SYSTEM;
- private static final int LOCK_FLAG = WallpaperManager.FLAG_LOCK;
-
- private ImageView mPreviewView;
-
- private BottomSheetBehavior mApplySheetBehavior;
- private boolean mIsApplyingWallpaper = false;
-
- @Override
- protected void onCreate(@Nullable Bundle savedInstance) {
- super.onCreate(savedInstance);
-
- setContentView(R.layout.activity_apply);
-
- mPreviewView = findViewById(R.id.apply_preview);
- ImageView closeView = findViewById(R.id.apply_close);
-
- LinearLayout applySheetView = findViewById(R.id.apply_button);
- TextView bothView = findViewById(R.id.apply_both);
- TextView homeView = findViewById(R.id.apply_home);
- TextView lockView = findViewById(R.id.apply_lock);
-
- mApplySheetBehavior = BottomSheetBehavior.from(applySheetView);
-
- closeView.setOnClickListener(v -> quitIfDoingNothing());
- bothView.setOnClickListener(v -> applyWallpaper(BOTH_FLAG));
- homeView.setOnClickListener(v -> applyWallpaper(HOME_FLAG));
- lockView.setOnClickListener(v -> applyWallpaper(LOCK_FLAG));
-
- setup();
- }
-
- private void setup() {
- setupBottomSheet();
-
- final WallpaperBundle wallpaperBundle = getIntent().getParcelableExtra(EXTRA_WALLPAPER);
- if (wallpaperBundle == null) {
- return;
- }
-
- switch (wallpaperBundle.getType()) {
- case BUILT_IN:
- setupBuiltIn(wallpaperBundle);
- break;
- case DEFAULT:
- setupDefault();
- break;
- case GRADIENT:
- setupGradient(wallpaperBundle);
- break;
- case MONO:
- setupMono(wallpaperBundle);
- break;
- case USER:
- setupUser(wallpaperBundle.getName());
- break;
- }
- }
-
- private void setupBottomSheet() {
- mApplySheetBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
- mApplySheetBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
- @SuppressLint("SwitchIntDef")
- @Override
- public void onStateChanged(@NonNull View view, int i) {
- }
-
- @Override
- public void onSlide(@NonNull View view, float v) {
- /* 1 - Expanded
- * :
- * 0 - Peek
- * :
- * -1 - Hidden
- */
- if (v == 1f || v == 0f || v == -1f) {
- // Let the sliding sheet "lock in" the new position
- view.performHapticFeedback(HapticFeedbackConstants.CLOCK_TICK,
- HapticFeedbackConstants.FLAG_IGNORE_GLOBAL_SETTING);
- // Quit if the user slides the sheet out
- if (v == -1f) {
- quitIfDoingNothing();
- }
- }
- }
- });
- }
-
- private void setupBuiltIn(@NonNull final WallpaperBundle bundle) {
- Drawable drawable = ContextCompat.getDrawable(this, bundle.getDescriptor());
- displayPreview(drawable);
- }
-
- private void setupDefault() {
- WallpaperManager manager = getSystemService(WallpaperManager.class);
- Drawable drawable = manager.getBuiltInDrawable();
- displayPreview(drawable);
- }
-
- private void setupMono(@NonNull final WallpaperBundle bundle) {
- /*
- * Welcome to HackLand: ColorDrawable doesn't play nicely with
- * shared element transitions, so we have to draw a Bitmap and convert
- * it to a Drawable through BitmapDrawable
- */
- final Bitmap bm = Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888);
- bm.eraseColor(bundle.getDescriptor());
- Drawable drawable = new BitmapDrawable(getResources(), bm);
- displayPreview(drawable);
- }
-
- private void setupGradient(@NonNull final WallpaperBundle bundle) {
- /*
- * Welcome to HackLand pt2: GradientDrawable doesn't play nicely with
- * shared element transitions, so we have to make some magic:
- * 1. Get the OG drawable
- * 2. Convert to a Bitmap
- * 3. Convert the Bitmap to a BitmapDrawable
- * 4. Apply the BitmapDrawable
- */
- final Drawable origDrawable = ContextCompat.getDrawable(this, bundle.getDescriptor());
- if (origDrawable == null) {
- return;
- }
-
- final Bitmap bm = TypeConverter.drawableToBitmap(origDrawable);
- final BitmapDrawable bmd = new BitmapDrawable(getResources(), bm);
- displayPreview(bmd);
- }
-
- private void setupUser(@Nullable final String wallpaperUri) {
- if (wallpaperUri == null) {
- finish();
- return;
- }
-
- new LoadDrawableFromUriTask(new LoadDrawableFromUriTask.Callback() {
- @Override
- public void onCompleted(@Nullable Drawable drawable) {
- displayPreview(drawable);
- }
-
- @NonNull
- @Override
- public ContentResolver getContentResolver() {
- return ApplyActivity.this.getContentResolver();
- }
-
- @NonNull
- @Override
- public Resources getResources() {
- return ApplyActivity.this.getResources();
- }
- }).execute(wallpaperUri);
- }
-
- private void applyWallpaper(final int flags) {
- mIsApplyingWallpaper = true;
-
- hideApplyLayout();
-
- final Drawable drawable = mPreviewView.getDrawable();
-
- new ApplyWallpaperTask(new ApplyWallpaperTask.Callback() {
- @Override
- public void onCompleted(boolean result) {
- onWallpaperApplied(result);
- }
-
- @NonNull
- @Override
- public WallpaperManager getWallpaperManager() {
- return getSystemService(WallpaperManager.class);
- }
-
- @Override
- public int getFlags() {
- return flags;
- }
- }).execute(drawable);
- }
-
- private void displayPreview(@Nullable final Drawable drawable) {
- if (drawable == null) {
- return;
- }
-
- mPreviewView.setImageDrawable(drawable);
- colorUi();
- showApplyLayout();
- }
-
- private void showApplyLayout() {
- new Handler().postDelayed(() ->
- mApplySheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED), 350);
- }
-
- private void hideApplyLayout() {
- mApplySheetBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
- }
-
- private void onWallpaperApplied(final boolean success) {
- if (success) {
- setResult(MainActivity.RESULT_APPLIED);
- }
-
- Toast.makeText(this, success ? R.string.apply_success : R.string.apply_failure,
- Toast.LENGTH_LONG).show();
- finish();
-
- }
-
- private void colorUi() {
- final Drawable previewDrawable = mPreviewView.getDrawable();
- final int color = ColorUtils.extractColor(ColorUtils.extractPalette(previewDrawable));
-
- // SystemUI
- UiUtils.setStatusBarColor(getWindow(), color);
- }
-
- private void quitIfDoingNothing() {
- if (mIsApplyingWallpaper) {
- return;
- }
-
- finish();
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/ui/MainActivity.java b/app/src/main/java/org/lineageos/backgrounds/ui/MainActivity.java
deleted file mode 100644
index 246b502..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/ui/MainActivity.java
+++ /dev/null
@@ -1,202 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.ui;
-
-import android.app.WallpaperManager;
-import android.content.Intent;
-import android.content.res.Resources;
-import android.os.Bundle;
-import android.view.View;
-import android.widget.LinearLayout;
-import android.widget.ProgressBar;
-import android.widget.TextView;
-
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-import androidx.appcompat.app.AppCompatActivity;
-import androidx.core.app.ActivityOptionsCompat;
-import androidx.core.widget.NestedScrollView;
-import androidx.recyclerview.widget.DefaultItemAnimator;
-import androidx.recyclerview.widget.RecyclerView;
-import androidx.recyclerview.widget.StaggeredGridLayoutManager;
-
-import org.lineageos.backgrounds.R;
-import org.lineageos.backgrounds.adapters.WallsAdapter;
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-import org.lineageos.backgrounds.bundle.WallpaperType;
-import org.lineageos.backgrounds.factory.UserWallpaperFactory;
-import org.lineageos.backgrounds.task.FetchDataTask;
-
-import java.util.List;
-
-public final class MainActivity extends AppCompatActivity implements SelectionInterface {
- public static final int RESULT_APPLIED = 917;
- private static final int PICK_IMAGE_FROM_EXT = 618;
- private static final int APPLY_WALLPAPER = 619;
-
- private ProgressBar mLoadingProgressBar;
- private TextView mLoadingTextView;
- private NestedScrollView mContentLayout;
- private TextView mTitleView;
- private RecyclerView mContentRecyclerView;
-
- private WallsAdapter mAdapter;
-
- @Nullable
- private View mHolder;
-
- @Override
- protected void onCreate(@Nullable Bundle savedInstance) {
- super.onCreate(savedInstance);
-
- setContentView(R.layout.activity_main);
-
- mLoadingProgressBar = findViewById(R.id.main_loading_bar);
- mLoadingTextView = findViewById(R.id.main_loading_text);
- mContentLayout = findViewById(R.id.main_contents);
- mTitleView = findViewById(R.id.main_title);
- mContentRecyclerView = findViewById(R.id.main_recyclerview);
-
- setupRecyclerView();
- loadContent();
- setupTitle();
- }
-
- @Override
- public void onResume() {
- super.onResume();
-
- // Cleanup
- if (mHolder != null) {
- mHolder.setTransitionName("");
- mHolder = null;
- }
- }
-
- @Override
- protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
- super.onActivityResult(requestCode, resultCode, data);
- if (requestCode == PICK_IMAGE_FROM_EXT && data != null) {
- onPickedFromExt(data.getDataString());
- return;
- }
- if (requestCode == APPLY_WALLPAPER && resultCode == RESULT_APPLIED) {
- // We're done
- finish();
- }
- }
-
- @Override
- public void onWallpaperSelected(@NonNull View view, @Nullable WallpaperBundle bundle) {
- mHolder = view;
- if (bundle == null) {
- pickWallpaperFromExternalStorage();
- } else {
- openPreview(bundle);
- }
- }
-
- private void setupRecyclerView() {
- mAdapter = new WallsAdapter(this);
-
- int numOfColumns = getResources().getInteger(R.integer.main_list_columns);
- StaggeredGridLayoutManager staggeredGridLayoutManager = new StaggeredGridLayoutManager(
- numOfColumns, LinearLayout.VERTICAL);
- mContentRecyclerView.setLayoutManager(staggeredGridLayoutManager);
- mContentRecyclerView.setItemAnimator(new DefaultItemAnimator());
- mContentRecyclerView.setAdapter(mAdapter);
- }
-
- private void setupTitle() {
- mContentLayout.setOnScrollChangeListener((View.OnScrollChangeListener)
- (v, scrollX, scrollY, oldScrollX, oldScrollY) -> {
- final int base = v.getHeight() / 8;
- mTitleView.setAlpha((float) (base - scrollY) / base);
- });
- }
-
- private void loadContent() {
- new FetchDataTask(new FetchDataTask.Callback() {
- @Override
- public void onCompleted(@NonNull List<WallpaperBundle> data) {
- onContentLoaded(data);
- }
-
- @NonNull
- @Override
- public Resources getResources() {
- return MainActivity.this.getResources();
- }
-
- @NonNull
- @Override
- public WallpaperManager getWallpaperManager() {
- return getSystemService(WallpaperManager.class);
- }
- }).execute();
- }
-
- private void onContentLoaded(@NonNull final List<WallpaperBundle> data) {
- mAdapter.setData(data);
-
- postContentLoaded();
- }
-
- private void postContentLoaded() {
- mLoadingTextView.setVisibility(View.GONE);
- mLoadingProgressBar.setVisibility(View.GONE);
- mContentLayout.setVisibility(View.VISIBLE);
- }
-
- private void pickWallpaperFromExternalStorage() {
- Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT)
- .addCategory(Intent.CATEGORY_OPENABLE)
- .setType("image/*");
-
- startActivityForResult(intent, PICK_IMAGE_FROM_EXT);
- }
-
- private void openPreview(@NonNull final WallpaperBundle bundle) {
- Intent intent = new Intent(this, ApplyActivity.class)
- .putExtra(ApplyActivity.EXTRA_WALLPAPER, bundle);
- if (mHolder == null) {
- return;
- }
-
- if (bundle.getType() == WallpaperType.USER) {
- // No animations for you
- startActivity(intent);
- return;
- }
-
- // Shared element transition
- mHolder.setTransitionName(ApplyActivity.EXTRA_TRANSITION_NAME);
- ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation(
- this, mHolder, ApplyActivity.EXTRA_TRANSITION_NAME);
-
- startActivityForResult(intent, APPLY_WALLPAPER, options.toBundle());
- }
-
- private void onPickedFromExt(@Nullable final String uriString) {
- if (uriString == null) {
- return;
- }
- // Pass a fake bundle with name as URI path
- WallpaperBundle fakeBundle = UserWallpaperFactory.build(uriString);
- //noinspection All: we know mHolder is not null at this point
- onWallpaperSelected(mHolder, fakeBundle);
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/ui/SelectionInterface.java b/app/src/main/java/org/lineageos/backgrounds/ui/SelectionInterface.java
deleted file mode 100644
index c74b4a8..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/ui/SelectionInterface.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.ui;
-
-import android.view.View;
-
-import androidx.annotation.NonNull;
-import androidx.annotation.Nullable;
-
-import org.lineageos.backgrounds.bundle.WallpaperBundle;
-
-public interface SelectionInterface {
-
- /**
- * Callback for wallpaper click
- *
- * @param bundle if null, it means that wallpaper must be fetched from the sdcard
- */
- void onWallpaperSelected(@NonNull View view,
- @Nullable WallpaperBundle bundle);
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/util/ColorUtils.java b/app/src/main/java/org/lineageos/backgrounds/util/ColorUtils.java
deleted file mode 100644
index f735645..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/util/ColorUtils.java
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.util;
-
-import android.graphics.Bitmap;
-import android.graphics.Color;
-import android.graphics.drawable.Drawable;
-
-import androidx.annotation.ColorInt;
-import androidx.annotation.NonNull;
-import androidx.palette.graphics.Palette;
-
-public final class ColorUtils {
-
- private ColorUtils() {
- }
-
- public static Palette extractPalette(@NonNull final Drawable drawable) {
- final Bitmap bm = TypeConverter.drawableToBitmap(drawable);
- return Palette.from(bm).generate();
- }
-
- public static Palette extractPaletteFromBottom(@NonNull final Drawable drawable) {
- final Bitmap originalBm = TypeConverter.drawableToBitmap(drawable);
- // Crop bottom 20%
- final int cropY = (int) (originalBm.getHeight() * 0.8f);
- final Bitmap bottomPart = Bitmap.createBitmap(originalBm, 0, cropY,
- originalBm.getWidth(), originalBm.getHeight() - cropY);
- return Palette.from(bottomPart).generate();
- }
-
- @ColorInt
- public static int extractColor(@NonNull final Palette palette) {
- final int dominant = palette.getDominantColor(Color.WHITE);
- if (dominant != Color.WHITE) {
- return dominant;
- }
- final int vibrant = palette.getVibrantColor(Color.WHITE);
- if (vibrant != Color.WHITE) {
- return vibrant;
- }
- return palette.getMutedColor(Color.WHITE);
- }
-
-
- @ColorInt
- public static int extractContrastColor(@NonNull final Palette palette) {
- int color = Color.BLACK;
-
- final Palette.Swatch dominant = palette.getDominantSwatch();
- if (dominant != null) {
- color = dominant.getRgb();
- } else {
- final Palette.Swatch vibrant = palette.getVibrantSwatch();
- if (vibrant != null) {
- color = vibrant.getRgb();
- }
- }
-
- return isColorLight(color) ? Color.BLACK : Color.WHITE;
- }
-
- static boolean isColorLight(@ColorInt final int color) {
- int red = Color.red(color);
- int green = Color.green(color);
- int blue = Color.blue(color);
-
- //noinspection all
- float hsl[] = new float[3];
-
- androidx.core.graphics.ColorUtils.RGBToHSL(red, green, blue, hsl);
- return hsl[2] > 0.76f;
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/util/TypeConverter.java b/app/src/main/java/org/lineageos/backgrounds/util/TypeConverter.java
deleted file mode 100644
index d4370d0..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/util/TypeConverter.java
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.util;
-
-import android.graphics.Bitmap;
-import android.graphics.Canvas;
-import android.graphics.drawable.BitmapDrawable;
-import android.graphics.drawable.Drawable;
-
-import androidx.annotation.NonNull;
-
-import org.lineageos.backgrounds.bundle.WallpaperType;
-
-public final class TypeConverter {
-
- private TypeConverter() {
- }
-
- @NonNull
- public static WallpaperType intToWallpaperType(final int value) {
- switch (value) {
- case 1:
- return WallpaperType.BUILT_IN;
- case 2:
- return WallpaperType.DEFAULT;
- case 3:
- return WallpaperType.GRADIENT;
- case 4:
- return WallpaperType.MONO;
- default:
- return WallpaperType.USER;
- }
- }
-
- public static int wallpaperTypeToInt(@NonNull final WallpaperType type) {
- switch (type) {
- case BUILT_IN:
- return 1;
- case DEFAULT:
- return 2;
- case GRADIENT:
- return 3;
- case MONO:
- return 4;
- default:
- return 0;
- }
- }
-
- @NonNull
- public static Bitmap drawableToBitmap(@NonNull final Drawable drawable) {
- if (drawable instanceof BitmapDrawable) {
- final BitmapDrawable bmd = (BitmapDrawable) drawable;
- final Bitmap bm = bmd.getBitmap();
- if (bm != null) {
- return bm;
- }
- }
-
- final int drawableWidth = drawable.getIntrinsicWidth();
- final int drawableHeight = drawable.getIntrinsicHeight();
- final Bitmap bm = Bitmap.createBitmap(
- drawableWidth > 0 ? drawableWidth : 1000,
- drawableHeight > 0 ? drawableHeight : 1000,
- Bitmap.Config.ARGB_8888);
- final Canvas canvas = new Canvas(bm);
- drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
- drawable.draw(canvas);
- return bm;
- }
-}
diff --git a/app/src/main/java/org/lineageos/backgrounds/util/UiUtils.java b/app/src/main/java/org/lineageos/backgrounds/util/UiUtils.java
deleted file mode 100644
index 2d5b798..0000000
--- a/app/src/main/java/org/lineageos/backgrounds/util/UiUtils.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.lineageos.backgrounds.util;
-
-import android.view.View;
-import android.view.Window;
-
-import androidx.annotation.ColorInt;
-import androidx.annotation.NonNull;
-
-public final class UiUtils {
-
- private UiUtils() {
- }
-
- public static void setStatusBarColor(@NonNull final Window window, @ColorInt final int color) {
- window.setStatusBarColor(color);
- final boolean isLight = ColorUtils.isColorLight(color);
- int flags = window.getDecorView().getSystemUiVisibility();
- if (isLight) {
- flags |= View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
- } else {
- flags &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
- }
-
- window.getDecorView().setSystemUiVisibility(flags);
- }
-}
diff --git a/app/src/main/res/drawable/bg_apply_button.xml b/app/src/main/res/drawable/bg_apply_button.xml
deleted file mode 100644
index e41b328..0000000
--- a/app/src/main/res/drawable/bg_apply_button.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <solid android:color="@color/colorPrimary" />
-
- <corners
- android:topLeftRadius="16dp"
- android:topRightRadius="16dp" />
-</shape>
diff --git a/app/src/main/res/drawable/bg_apply_close.xml b/app/src/main/res/drawable/bg_apply_close.xml
deleted file mode 100644
index a47af00..0000000
--- a/app/src/main/res/drawable/bg_apply_close.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="oval">
-
- <solid android:color="@color/apply_closeBg" />
-</shape>
diff --git a/app/src/main/res/drawable/bg_wallpaper_item.xml b/app/src/main/res/drawable/bg_wallpaper_item.xml
deleted file mode 100644
index 6f1fc56..0000000
--- a/app/src/main/res/drawable/bg_wallpaper_item.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- <corners android:radius="4dp"/>
- <solid android:color="@color/colorPrimary"/>
-</shape>
diff --git a/app/src/main/res/drawable/gradient_iron.xml b/app/src/main/res/drawable/gradient_iron.xml
deleted file mode 100644
index 8c16f60..0000000
--- a/app/src/main/res/drawable/gradient_iron.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="-45"
- android:endColor="#5A5454"
- android:startColor="#333333" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/gradient_leaf.xml b/app/src/main/res/drawable/gradient_leaf.xml
deleted file mode 100644
index ff657ba..0000000
--- a/app/src/main/res/drawable/gradient_leaf.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="45"
- android:endColor="#3AA17E"
- android:startColor="#134E5E" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/gradient_lemon.xml b/app/src/main/res/drawable/gradient_lemon.xml
deleted file mode 100644
index 4e0e1c8..0000000
--- a/app/src/main/res/drawable/gradient_lemon.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="135"
- android:endColor="#D9E021"
- android:startColor="#FB872B" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/gradient_neon.xml b/app/src/main/res/drawable/gradient_neon.xml
deleted file mode 100644
index 8496c79..0000000
--- a/app/src/main/res/drawable/gradient_neon.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="-135"
- android:endColor="#00FFFF"
- android:startColor="#00FFA1" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/gradient_ocean.xml b/app/src/main/res/drawable/gradient_ocean.xml
deleted file mode 100644
index e737933..0000000
--- a/app/src/main/res/drawable/gradient_ocean.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="90"
- android:endColor="#29ABE2"
- android:startColor="#4F00BC" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/gradient_orange.xml b/app/src/main/res/drawable/gradient_orange.xml
deleted file mode 100644
index fd44947..0000000
--- a/app/src/main/res/drawable/gradient_orange.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="90"
- android:endColor="#A83279"
- android:startColor="#D38312" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/gradient_peach.xml b/app/src/main/res/drawable/gradient_peach.xml
deleted file mode 100644
index e68df50..0000000
--- a/app/src/main/res/drawable/gradient_peach.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
- background-image: radial-gradient( circle farthest-corner at 10% 20%, rgba(253,193,104,1) 0%, rgba(251,128,128,1) 90% );
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="135"
- android:endColor="#F24645"
- android:startColor="#EBC08D" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/gradient_plum.xml b/app/src/main/res/drawable/gradient_plum.xml
deleted file mode 100644
index 16119a4..0000000
--- a/app/src/main/res/drawable/gradient_plum.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="90"
- android:endColor="#852D91"
- android:startColor="#312A6C" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/gradient_shine.xml b/app/src/main/res/drawable/gradient_shine.xml
deleted file mode 100644
index 1a9a019..0000000
--- a/app/src/main/res/drawable/gradient_shine.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
-
- <gradient
- android:angle="45"
- android:endColor="#8E78FF"
- android:startColor="#FC7D7B" />
-</shape>
\ No newline at end of file
diff --git a/app/src/main/res/drawable/ic_close.xml b/app/src/main/res/drawable/ic_close.xml
deleted file mode 100644
index c02b51d..0000000
--- a/app/src/main/res/drawable/ic_close.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
- android:width="24dp"
- android:height="24dp"
- android:viewportWidth="24.0"
- android:viewportHeight="24.0">
- <path
- android:fillColor="@android:color/white"
- android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z" />
-</vector>
diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml
deleted file mode 100644
index 77ef613..0000000
--- a/app/src/main/res/drawable/ic_launcher_foreground.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
- android:width="108dp"
- android:height="108dp"
- android:viewportWidth="88.111885"
- android:viewportHeight="88.111885">
- <group
- android:translateX="26.46387"
- android:translateY="23.055944">
- <path
- android:fillAlpha="0.3"
- android:fillColor="#000000"
- android:pathData="M12,9h11v10h-11z" />
- <path
- android:fillColor="#ffffff"
- android:pathData="M17.8588,42C26.9788,42 34.5188,35.2 35.6988,26.4C35.8788,25.12 34.7388,23.98 33.4588,24.16C24.6588,25.34 17.8588,32.88 17.8588,42ZM5.0588,18.5C5.0588,21.26 7.2988,23.5 10.0588,23.5C11.1188,23.5 12.0788,23.18 12.8988,22.62L12.8588,23C12.8588,25.76 15.0988,28 17.8588,28C20.6188,28 22.8588,25.76 22.8588,23L22.8188,22.62C23.6188,23.18 24.5988,23.5 25.6588,23.5C28.4188,23.5 30.6588,21.26 30.6588,18.5C30.6588,16.5 29.4788,14.8 27.7988,14C29.4788,13.2 30.6588,11.5 30.6588,9.5C30.6588,6.74 28.4188,4.5 25.6588,4.5C24.5988,4.5 23.6388,4.82 22.8188,5.38L22.8588,5C22.8588,2.24 20.6188,0 17.8588,0C15.0988,0 12.8588,2.24 12.8588,5L12.8988,5.38C12.0988,4.82 11.1188,4.5 10.0588,4.5C7.2988,4.5 5.0588,6.74 5.0588,9.5C5.0588,11.5 6.2388,13.2 7.9188,14C6.2388,14.8 5.0588,16.5 5.0588,18.5ZM17.8588,9C20.6188,9 22.8588,11.24 22.8588,14C22.8588,16.76 20.6188,19 17.8588,19C15.0988,19 12.8588,16.76 12.8588,14C12.8588,11.24 15.0988,9 17.8588,9ZM0.0188,26.4C1.1988,35.2 8.7388,42 17.8588,42C17.8588,32.88 11.0588,25.34 2.2588,24.16C0.9788,23.98 -0.1612,25.12 0.0188,26.4Z" />
- </group>
-</vector>
diff --git a/app/src/main/res/drawable/ic_set_both.xml b/app/src/main/res/drawable/ic_set_both.xml
deleted file mode 100644
index af690a1..0000000
--- a/app/src/main/res/drawable/ic_set_both.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
- android:width="48dp"
- android:height="96dp"
- android:viewportWidth="48"
- android:viewportHeight="96">
- <path
- android:pathData="M4,50h40v42H4z"
- android:fillColor="#E3F2FD"/>
- <path
- android:pathData="M0,92L0,50h4v42h40L44,50h4v42a4,4 0,0 1,-4 4L4,96a4,4 0,0 1,-4 -4zM9,84a3,3 0,1 0,0 -6,3 3,0 0,0 0,6zM19,84a3,3 0,1 0,0 -6,3 3,0 0,0 0,6zM32,81a3,3 0,1 1,-6 0,3 3,0 0,1 6,0zM39,84a3,3 0,1 0,0 -6,3 3,0 0,0 0,6zM20,89a1,1 0,0 1,1 -1h6a1,1 0,1 1,0 2h-6a1,1 0,0 1,-1 -1z"
- android:fillColor="#2C98F0"
- android:fillType="evenOdd"/>
- <path
- android:pathData="M4,4h40v42H4z"
- android:fillColor="#FFF3E0"/>
- <path
- android:pathData="M0,4v42h4L4,4h40v42h4L48,4a4,4 0,0 0,-4 -4L4,0a4,4 0,0 0,-4 4zM40,20L8,20v12h32L40,20z"
- android:fillColor="#FF9800"
- android:fillType="evenOdd"/>
-</vector>
diff --git a/app/src/main/res/drawable/ic_set_home.xml b/app/src/main/res/drawable/ic_set_home.xml
deleted file mode 100644
index 6a69e04..0000000
--- a/app/src/main/res/drawable/ic_set_home.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
- android:width="48dp"
- android:height="96dp"
- android:viewportWidth="48"
- android:viewportHeight="96">
- <path
- android:pathData="M4,4h40v88H4z"
- android:fillColor="#E3F2FD"/>
- <path
- android:pathData="M0,4a4,4 0,0 1,4 -4h40a4,4 0,0 1,4 4v88a4,4 0,0 1,-4 4L4,96a4,4 0,0 1,-4 -4L0,4zM4,4h40v88L4,92L4,4zM9,84a3,3 0,1 0,0 -6,3 3,0 0,0 0,6zM22,81a3,3 0,1 1,-6 0,3 3,0 0,1 6,0zM29,84a3,3 0,1 0,0 -6,3 3,0 0,0 0,6zM42,81a3,3 0,1 1,-6 0,3 3,0 0,1 6,0zM21,88a1,1 0,1 0,0 2h6a1,1 0,1 0,0 -2h-6z"
- android:fillColor="#2C98F0"
- android:fillType="evenOdd"/>
-</vector>
diff --git a/app/src/main/res/drawable/ic_set_lock.xml b/app/src/main/res/drawable/ic_set_lock.xml
deleted file mode 100644
index dbe8cbb..0000000
--- a/app/src/main/res/drawable/ic_set_lock.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
- android:width="48dp"
- android:height="96dp"
- android:viewportWidth="48"
- android:viewportHeight="96">
- <path
- android:pathData="M4,4h40v88H4z"
- android:fillColor="#FFF3E0"/>
- <path
- android:pathData="M4,0a4,4 0,0 0,-4 4v88a4,4 0,0 0,4 4h40a4,4 0,0 0,4 -4L48,4a4,4 0,0 0,-4 -4L4,0zM44,4L4,4v88h40L44,4zM40,20L8,20v12h32L40,20z"
- android:fillColor="#FF9800"
- android:fillType="evenOdd"/>
-</vector>
diff --git a/app/src/main/res/drawable/ic_wallpaper_add_local.xml b/app/src/main/res/drawable/ic_wallpaper_add_local.xml
deleted file mode 100644
index d2914b3..0000000
--- a/app/src/main/res/drawable/ic_wallpaper_add_local.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<vector xmlns:android="http://schemas.android.com/apk/res/android"
- android:width="144dp"
- android:height="144dp"
- android:viewportWidth="144"
- android:viewportHeight="144">
- <path
- android:fillColor="#167C80"
- android:pathData="M0,0h144v144h-144z" />
- <path
- android:fillAlpha="0.3"
- android:fillColor="#000000"
- android:pathData="M72,72m-36,0a36,36 0,1 1,72 0a36,36 0,1 1,-72 0" />
- <path
- android:fillColor="#ffffff"
- android:pathData="M54,60C54,57.8 55.8,56 58,56H76V60H58V88H86V70H90V88C90,90.2 88.2,92 86,92H58C55.8,92 54,90.2 54,88V60Z" />
- <path
- android:fillColor="#ffffff"
- android:pathData="M80,60C80,60 80.02,56.02 80,56H86V50H90V56H96V60H90V65.98C90,65.98 86.02,66 86,65.98V60H80Z" />
- <path
- android:fillColor="#167C80"
- android:pathData="M66.5,76.94L70.42,81.66L75.92,74.58L83,84H61L66.5,76.94Z" />
-</vector>
diff --git a/app/src/main/res/layout/activity_apply.xml b/app/src/main/res/layout/activity_apply.xml
deleted file mode 100644
index 0633507..0000000
--- a/app/src/main/res/layout/activity_apply.xml
+++ /dev/null
@@ -1,79 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fitsSystemWindows="true">
-
- <ImageView
- android:id="@+id/apply_preview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:contentDescription="@null"
- android:fitsSystemWindows="true"
- android:scaleType="centerCrop"
- android:transitionName="transition_shared_preview"
- tools:src="@drawable/space_riseup" />
-
- <ImageView
- android:id="@+id/apply_close"
- android:layout_width="32dp"
- android:layout_height="32dp"
- android:layout_gravity="top|start"
- android:layout_margin="16dp"
- android:background="@drawable/bg_apply_close"
- android:contentDescription="@string/apply_close"
- android:padding="4dp"
- android:src="@drawable/ic_close" />
-
- <LinearLayout
- android:id="@+id/apply_button"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom|center_horizontal"
- android:layout_marginHorizontal="@dimen/apply_margin_horizontal"
- android:background="@drawable/bg_apply_button"
- android:elevation="4dp"
- android:foregroundGravity="center"
- android:orientation="horizontal"
- android:paddingHorizontal="8dp"
- android:paddingVertical="24dp"
- android:weightSum="3"
- app:behavior_hideable="true"
- app:behavior_peekHeight="48dp"
- app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
-
- <TextView
- android:id="@+id/apply_home"
- style="@style/AppTheme.ApplyButton"
- android:drawableTop="@drawable/ic_set_home"
- android:text="@string/apply_home_action" />
-
- <TextView
- android:id="@+id/apply_lock"
- style="@style/AppTheme.ApplyButton"
- android:drawableTop="@drawable/ic_set_lock"
- android:text="@string/apply_lock_action" />
-
- <TextView
- android:id="@+id/apply_both"
- style="@style/AppTheme.ApplyButton"
- android:drawableTop="@drawable/ic_set_both"
- android:text="@string/apply_both_action" />
- </LinearLayout>
-</androidx.coordinatorlayout.widget.CoordinatorLayout>
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
deleted file mode 100644
index 2db88c3..0000000
--- a/app/src/main/res/layout/activity_main.xml
+++ /dev/null
@@ -1,78 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <ProgressBar
- android:id="@+id/main_loading_bar"
- style="@style/Widget.AppCompat.ProgressBar.Horizontal"
- android:layout_width="196dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_marginTop="40dp"
- android:indeterminate="true" />
-
- <TextView
- android:id="@+id/main_loading_text"
- android:layout_width="wrap_content"
- android:layout_height="32dp"
- android:layout_gravity="center"
- android:text="@string/main_loading"
- android:textColor="?android:attr/textColorPrimary"
- android:textSize="24sp" />
-
- <androidx.core.widget.NestedScrollView
- android:id="@+id/main_contents"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone"
- app:layout_behavior="@string/appbar_scrolling_view_behavior">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
-
- <TextView
- android:id="@+id/main_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingHorizontal="16dp"
- android:paddingTop="72dp"
- android:paddingBottom="36dp"
- android:text="@string/app_name"
- android:textAppearance="@style/AppTheme.AppTitle"
- android:textColor="?android:attr/textColorPrimary" />
-
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/main_recyclerview"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="@dimen/main_list_margin_left"
- android:layout_marginTop="24dp"
- android:paddingHorizontal="4dp"
- tools:ignore="RtlHardcoded" />
-
- <!-- Bottom margin -->
- <View
- android:layout_width="match_parent"
- android:layout_height="72dp" />
- </LinearLayout>
- </androidx.core.widget.NestedScrollView>
-</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_wallpaper.xml b/app/src/main/res/layout/item_wallpaper.xml
deleted file mode 100644
index 595a9c7..0000000
--- a/app/src/main/res/layout/item_wallpaper.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="@dimen/item_margin_horizontal"
- android:layout_marginVertical="@dimen/item_margin_vertical"
- android:background="@drawable/bg_wallpaper_item"
- android:clickable="true"
- android:elevation="4dp"
- android:focusable="true"
- android:foreground="?android:attr/selectableItemBackground">
-
-
- <ImageView
- android:id="@+id/item_wallpaper_preview"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:adjustViewBounds="true"
- android:contentDescription="@null"
- tools:src="@drawable/ic_wallpaper_add_local" />
-
- <TextView
- android:id="@+id/item_wallpaper_name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom"
- android:ellipsize="end"
- android:maxLines="1"
- android:paddingHorizontal="8dp"
- android:paddingBottom="8dp"
- android:textSize="18sp"
- tools:text="@string/main_wallpaper_pick" />
-
-</FrameLayout>
diff --git a/app/src/main/res/mipmap/ic_launcher.xml b/app/src/main/res/mipmap/ic_launcher.xml
deleted file mode 100644
index 581d972..0000000
--- a/app/src/main/res/mipmap/ic_launcher.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
- <background android:drawable="@color/ic_launcher_background"/>
- <foreground android:drawable="@drawable/ic_launcher_foreground"/>
-</adaptive-icon>
\ No newline at end of file
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
deleted file mode 100644
index 41f4b16..0000000
--- a/app/src/main/res/values-ar/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">الخلفيات</string>
- <string name="main_loading">جارٍ التحميل</string>
- <string name="main_wallpaper_pick">صورك</string>
- <string name="apply_both_action">الرئيسية وشاشة القفل</string>
- <string name="apply_home_action">الشاشة الرئيسية</string>
- <string name="apply_lock_action">شاشة القفل</string>
- <string name="apply_success">تم تطبيق الخلفية</string>
- <string name="apply_failure">غير قادر على تعيين هذه الخلفية</string>
- <string name="apply_close">إغلاق</string>
- <string name="wallpaper_mono_black">أسود</string>
- <string name="wallpaper_mono_blue">أزرق</string>
- <string name="wallpaper_mono_brown">بنّي</string>
- <string name="wallpaper_mono_cyan">سماوي</string>
- <string name="wallpaper_mono_green">أخضر</string>
- <string name="wallpaper_mono_orange">برتقالي</string>
- <string name="wallpaper_mono_pink">وردي</string>
- <string name="wallpaper_mono_purple">بنفسجي</string>
- <string name="wallpaper_mono_red">أحمر</string>
- <string name="wallpaper_mono_teal">أزرق مخضّر</string>
- <string name="wallpaper_mono_white">أبيض</string>
- <string name="wallpaper_mono_yellow">أصفر</string>
- <string name="wallpaper_gradient_iron">الفولاذ</string>
- <string name="wallpaper_gradient_leaf">ورقة الشجر</string>
- <string name="wallpaper_gradient_lemon">ليمون</string>
- <string name="wallpaper_gradient_neon">نيون</string>
- <string name="wallpaper_gradient_ocean">محيط</string>
- <string name="wallpaper_gradient_orange">برتقالي</string>
- <string name="wallpaper_gradient_peach">خوخ</string>
- <string name="wallpaper_gradient_plum">برقوقي</string>
- <string name="wallpaper_gradient_shine">لامع</string>
-</resources>
diff --git a/app/src/main/res/values-ast-rES/strings.xml b/app/src/main/res/values-ast-rES/strings.xml
deleted file mode 100644
index e0ca8b0..0000000
--- a/app/src/main/res/values-ast-rES/strings.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Fondos de pantalla</string>
- <string name="main_loading">Cargando\u2026</string>
- <string name="main_wallpaper_pick">Imáxenes de to</string>
- <string name="apply_both_action">Pantalla d\'aniciu & bloquéu</string>
- <string name="apply_home_action">Pantalla d\'aniciu</string>
- <string name="apply_lock_action">Pantalla de bloquéu</string>
- <string name="wallpaper_mono_black">Prietu</string>
- <string name="wallpaper_mono_blue">Azul</string>
- <string name="wallpaper_mono_brown">Marrón</string>
- <string name="wallpaper_mono_cyan">Cianu</string>
- <string name="wallpaper_mono_green">Verde</string>
- <string name="wallpaper_mono_orange">Naranxa</string>
- <string name="wallpaper_mono_pink">Rosa</string>
- <string name="wallpaper_mono_purple">Moráu</string>
- <string name="wallpaper_mono_red">Bermeyu</string>
-</resources>
diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml
deleted file mode 100644
index 4b63043..0000000
--- a/app/src/main/res/values-az/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Divar kağızları</string>
- <string name="main_loading">Yüklənir\u2026</string>
- <string name="main_wallpaper_pick">Təsvirləriniz</string>
- <string name="apply_both_action">Əsas və kilid ekranı</string>
- <string name="apply_home_action">Əsas ekran</string>
- <string name="apply_lock_action">Kilid ekranı</string>
- <string name="apply_success">Divar kağızı tətbiq edildi</string>
- <string name="apply_failure">Bu divar kağızı tənzimlənə bilmir</string>
- <string name="apply_close">Bağla</string>
- <string name="wallpaper_mono_black">Qara</string>
- <string name="wallpaper_mono_blue">Mavi</string>
- <string name="wallpaper_mono_brown">Qəhvəyi</string>
- <string name="wallpaper_mono_cyan">Firuzəyi</string>
- <string name="wallpaper_mono_green">Yaşıl</string>
- <string name="wallpaper_mono_orange">Narıncı</string>
- <string name="wallpaper_mono_pink">Çəhrayı</string>
- <string name="wallpaper_mono_purple">Bənövşəyi</string>
- <string name="wallpaper_mono_red">Qırmızı</string>
- <string name="wallpaper_mono_teal">Dəniz mavisi</string>
- <string name="wallpaper_mono_white">Ağ</string>
- <string name="wallpaper_mono_yellow">Sarı</string>
- <string name="wallpaper_gradient_iron">Dəmir</string>
- <string name="wallpaper_gradient_leaf">Yarpaq</string>
- <string name="wallpaper_gradient_lemon">Limon</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Okean</string>
- <string name="wallpaper_gradient_orange">Narıncı</string>
- <string name="wallpaper_gradient_peach">Şaftalı</string>
- <string name="wallpaper_gradient_plum">Ərik</string>
- <string name="wallpaper_gradient_shine">Parıltı</string>
-</resources>
diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml
deleted file mode 100644
index 1d19b25..0000000
--- a/app/src/main/res/values-bg/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Тапети</string>
- <string name="main_loading">Зареждане\u2026</string>
- <string name="main_wallpaper_pick">Вашите снимки</string>
- <string name="apply_both_action">Начелен екран и заключен екран</string>
- <string name="apply_home_action">Начален екран</string>
- <string name="apply_lock_action">Заключен екран</string>
- <string name="apply_success">Тапета е приложен</string>
- <string name="apply_failure">Този тапет не може да се инсталира</string>
- <string name="apply_close">Затвори</string>
- <string name="wallpaper_mono_black">Черен</string>
- <string name="wallpaper_mono_blue">Син</string>
- <string name="wallpaper_mono_brown">Кафяв</string>
- <string name="wallpaper_mono_cyan">Циан</string>
- <string name="wallpaper_mono_green">Зелен</string>
- <string name="wallpaper_mono_orange">Оранжев</string>
- <string name="wallpaper_mono_pink">Розов</string>
- <string name="wallpaper_mono_purple">Лилав</string>
- <string name="wallpaper_mono_red">Червен</string>
- <string name="wallpaper_mono_teal">Синьозелен</string>
- <string name="wallpaper_mono_white">Бял</string>
- <string name="wallpaper_mono_yellow">Жълт</string>
- <string name="wallpaper_gradient_iron">Желязо</string>
- <string name="wallpaper_gradient_leaf">Листо</string>
- <string name="wallpaper_gradient_lemon">Лимон</string>
- <string name="wallpaper_gradient_neon">Неон</string>
- <string name="wallpaper_gradient_ocean">Океан</string>
- <string name="wallpaper_gradient_orange">Оранжево</string>
- <string name="wallpaper_gradient_peach">Праскова</string>
- <string name="wallpaper_gradient_plum">Тъмновиолетов</string>
- <string name="wallpaper_gradient_shine">Сияние</string>
-</resources>
diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml
deleted file mode 100644
index 4fc1cad..0000000
--- a/app/src/main/res/values-ca/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Fons de pantalla</string>
- <string name="main_loading">S\'està carregant\u2026</string>
- <string name="main_wallpaper_pick">Les teves imatges</string>
- <string name="apply_both_action">Pantalla principal i de bloqueig</string>
- <string name="apply_home_action">Pantalla principal</string>
- <string name="apply_lock_action">Pantalla de bloqueig</string>
- <string name="apply_success">S\'ha aplicat el fons de pantalla</string>
- <string name="apply_failure">No es pot establir aquest fons de pantalla</string>
- <string name="apply_close">Tanca</string>
- <string name="wallpaper_mono_black">Negre</string>
- <string name="wallpaper_mono_blue">Blau</string>
- <string name="wallpaper_mono_brown">Marró</string>
- <string name="wallpaper_mono_cyan">Cian</string>
- <string name="wallpaper_mono_green">Verd</string>
- <string name="wallpaper_mono_orange">Taronja</string>
- <string name="wallpaper_mono_pink">Rosa</string>
- <string name="wallpaper_mono_purple">Porpra</string>
- <string name="wallpaper_mono_red">Vermell</string>
- <string name="wallpaper_mono_teal">Verd blavós</string>
- <string name="wallpaper_mono_white">Blanc</string>
- <string name="wallpaper_mono_yellow">Groc</string>
- <string name="wallpaper_gradient_iron">Ferro</string>
- <string name="wallpaper_gradient_leaf">Fulla</string>
- <string name="wallpaper_gradient_lemon">Llimona</string>
- <string name="wallpaper_gradient_neon">Neó</string>
- <string name="wallpaper_gradient_ocean">Oceà</string>
- <string name="wallpaper_gradient_orange">Taronja</string>
- <string name="wallpaper_gradient_peach">Préssec</string>
- <string name="wallpaper_gradient_plum">Pruna</string>
- <string name="wallpaper_gradient_shine">Lluentor</string>
-</resources>
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
deleted file mode 100644
index 588d622..0000000
--- a/app/src/main/res/values-cs/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Tapety</string>
- <string name="main_loading">Načítání\u2026</string>
- <string name="main_wallpaper_pick">Vaše obrázky</string>
- <string name="apply_both_action">Domovská & zamykací obrazovka</string>
- <string name="apply_home_action">Domovská obrazovka</string>
- <string name="apply_lock_action">Zamykací obrazovka</string>
- <string name="apply_success">Tapeta byla nastavena</string>
- <string name="apply_failure">Nelze nastavit tuto tapetu</string>
- <string name="apply_close">Zavřít</string>
- <string name="wallpaper_mono_black">Černá</string>
- <string name="wallpaper_mono_blue">Modrá</string>
- <string name="wallpaper_mono_brown">Hnědá</string>
- <string name="wallpaper_mono_cyan">Tyrkysová</string>
- <string name="wallpaper_mono_green">Zelená</string>
- <string name="wallpaper_mono_orange">Oranžová</string>
- <string name="wallpaper_mono_pink">Růžová</string>
- <string name="wallpaper_mono_purple">Fialová</string>
- <string name="wallpaper_mono_red">Červená</string>
- <string name="wallpaper_mono_teal">Modrozelená</string>
- <string name="wallpaper_mono_white">Bílá</string>
- <string name="wallpaper_mono_yellow">Žlutá</string>
- <string name="wallpaper_gradient_iron">Ocelová</string>
- <string name="wallpaper_gradient_leaf">List</string>
- <string name="wallpaper_gradient_lemon">Citrón</string>
- <string name="wallpaper_gradient_neon">Neony</string>
- <string name="wallpaper_gradient_ocean">Oceán</string>
- <string name="wallpaper_gradient_orange">Pomeranč</string>
- <string name="wallpaper_gradient_peach">Broskev</string>
- <string name="wallpaper_gradient_plum">Švestka</string>
- <string name="wallpaper_gradient_shine">Lesk</string>
-</resources>
diff --git a/app/src/main/res/values-cy/strings.xml b/app/src/main/res/values-cy/strings.xml
deleted file mode 100644
index cdf2c05..0000000
--- a/app/src/main/res/values-cy/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Papurau wal</string>
- <string name="main_loading">Yn llwytho\u2026</string>
- <string name="main_wallpaper_pick">Dy ddelweddau</string>
- <string name="apply_both_action">Cartref a sgrin cloi</string>
- <string name="apply_home_action">Sgrin gartref</string>
- <string name="apply_lock_action">Sgrin cloi</string>
- <string name="apply_success">Rhoddwyd y papur wal ar waith</string>
- <string name="apply_failure">Methu â gosod y papur wal hwn</string>
- <string name="apply_close">Cau</string>
- <string name="wallpaper_mono_black">Nôl</string>
- <string name="wallpaper_mono_blue">Glas</string>
- <string name="wallpaper_mono_brown">Brown</string>
- <string name="wallpaper_mono_cyan">Gwyrddlas</string>
- <string name="wallpaper_mono_green">Gwyrdd</string>
- <string name="wallpaper_mono_orange">Oren</string>
- <string name="wallpaper_mono_pink">Pinc</string>
- <string name="wallpaper_mono_purple">Porffor</string>
- <string name="wallpaper_mono_red">Coch</string>
- <string name="wallpaper_mono_teal">Glaswyrdd</string>
- <string name="wallpaper_mono_white">Gwyn</string>
- <string name="wallpaper_mono_yellow">Melyn</string>
- <string name="wallpaper_gradient_iron">Haearn</string>
- <string name="wallpaper_gradient_leaf">Deilen</string>
- <string name="wallpaper_gradient_lemon">Lemwn</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Cefnfor</string>
- <string name="wallpaper_gradient_orange">Oren</string>
- <string name="wallpaper_gradient_peach">Eirinen wlanog</string>
- <string name="wallpaper_gradient_plum">Eirinen</string>
- <string name="wallpaper_gradient_shine">Sglein</string>
-</resources>
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
deleted file mode 100644
index 799f09d..0000000
--- a/app/src/main/res/values-de/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Hintergründe</string>
- <string name="main_loading">Wird geladen\u2026</string>
- <string name="main_wallpaper_pick">Deine Bilder</string>
- <string name="apply_both_action">Start- & Sperrbildschirm</string>
- <string name="apply_home_action">Startbildschirm</string>
- <string name="apply_lock_action">Sperrbildschirm</string>
- <string name="apply_success">Hintergrundbild angewendet</string>
- <string name="apply_failure">Hintergrundbild kann nicht angewendet werden</string>
- <string name="apply_close">Schließen</string>
- <string name="wallpaper_mono_black">Schwarz</string>
- <string name="wallpaper_mono_blue">Blau</string>
- <string name="wallpaper_mono_brown">Braun</string>
- <string name="wallpaper_mono_cyan">Cyan</string>
- <string name="wallpaper_mono_green">Grün</string>
- <string name="wallpaper_mono_orange">Orange</string>
- <string name="wallpaper_mono_pink">Pink</string>
- <string name="wallpaper_mono_purple">Violett</string>
- <string name="wallpaper_mono_red">Rot</string>
- <string name="wallpaper_mono_teal">Blaugrün</string>
- <string name="wallpaper_mono_white">Weiß</string>
- <string name="wallpaper_mono_yellow">Gelb</string>
- <string name="wallpaper_gradient_iron">Eisengrau</string>
- <string name="wallpaper_gradient_leaf">Laubgrün</string>
- <string name="wallpaper_gradient_lemon">Zitronengelb</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Ozeanblau</string>
- <string name="wallpaper_gradient_orange">Orange</string>
- <string name="wallpaper_gradient_peach">Pfirsich</string>
- <string name="wallpaper_gradient_plum">Pflaumenblau</string>
- <string name="wallpaper_gradient_shine">Glanz</string>
-</resources>
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
deleted file mode 100644
index fe513d2..0000000
--- a/app/src/main/res/values-el/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Ταπετσαρίες</string>
- <string name="main_loading">Φόρτωση\u2026</string>
- <string name="main_wallpaper_pick">Οι εικόνες σας</string>
- <string name="apply_both_action">Αρχική & οθόνη κλειδώματος</string>
- <string name="apply_home_action">Αρχική οθόνη</string>
- <string name="apply_lock_action">Οθόνη κλειδώματος</string>
- <string name="apply_success">Η ταπετσαρία εφαρμόστηκε</string>
- <string name="apply_failure">Απέτυχε ο ορισμός της ταπετσαρίας</string>
- <string name="apply_close">Κλείσιμο</string>
- <string name="wallpaper_mono_black">Μαύρο</string>
- <string name="wallpaper_mono_blue">Μπλε</string>
- <string name="wallpaper_mono_brown">Καφέ</string>
- <string name="wallpaper_mono_cyan">Κυανό</string>
- <string name="wallpaper_mono_green">Πράσινο</string>
- <string name="wallpaper_mono_orange">Πορτοκαλί</string>
- <string name="wallpaper_mono_pink">Ροζ</string>
- <string name="wallpaper_mono_purple">Μωβ</string>
- <string name="wallpaper_mono_red">Κόκκινο</string>
- <string name="wallpaper_mono_teal">Τιρκουάζ</string>
- <string name="wallpaper_mono_white">Λευκό</string>
- <string name="wallpaper_mono_yellow">Κίτρινο</string>
- <string name="wallpaper_gradient_iron">Σίδερο</string>
- <string name="wallpaper_gradient_leaf">Φύλλο</string>
- <string name="wallpaper_gradient_lemon">Λεμόνι</string>
- <string name="wallpaper_gradient_neon">Νέον</string>
- <string name="wallpaper_gradient_ocean">Ωκεανός</string>
- <string name="wallpaper_gradient_orange">Πορτοκαλί</string>
- <string name="wallpaper_gradient_peach">Ροδάκινο</string>
- <string name="wallpaper_gradient_plum">Δαμάσκηνο</string>
- <string name="wallpaper_gradient_shine">Λάμψη</string>
-</resources>
diff --git a/app/src/main/res/values-en-rAU/strings.xml b/app/src/main/res/values-en-rAU/strings.xml
deleted file mode 100644
index b8fc4dc..0000000
--- a/app/src/main/res/values-en-rAU/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Wallpapers</string>
- <string name="main_loading">Loading\u2026</string>
- <string name="main_wallpaper_pick">Your images</string>
- <string name="apply_both_action">Home & lock screen</string>
- <string name="apply_home_action">Home screen</string>
- <string name="apply_lock_action">Lock screen</string>
- <string name="apply_success">Wallpaper applied</string>
- <string name="apply_failure">Unable to set this wallpaper</string>
- <string name="apply_close">Close</string>
- <string name="wallpaper_mono_black">Black</string>
- <string name="wallpaper_mono_blue">Blue</string>
- <string name="wallpaper_mono_brown">Brown</string>
- <string name="wallpaper_mono_cyan">Cyan</string>
- <string name="wallpaper_mono_green">Green</string>
- <string name="wallpaper_mono_orange">Orange</string>
- <string name="wallpaper_mono_pink">Pink</string>
- <string name="wallpaper_mono_purple">Purple</string>
- <string name="wallpaper_mono_red">Red</string>
- <string name="wallpaper_mono_teal">Teal</string>
- <string name="wallpaper_mono_white">White</string>
- <string name="wallpaper_mono_yellow">Yellow</string>
- <string name="wallpaper_gradient_iron">Iron</string>
- <string name="wallpaper_gradient_leaf">Leaf</string>
- <string name="wallpaper_gradient_lemon">Lemon</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Ocean</string>
- <string name="wallpaper_gradient_orange">Orange</string>
- <string name="wallpaper_gradient_peach">Peach</string>
- <string name="wallpaper_gradient_plum">Plum</string>
- <string name="wallpaper_gradient_shine">Shine</string>
-</resources>
diff --git a/app/src/main/res/values-en-rCA/strings.xml b/app/src/main/res/values-en-rCA/strings.xml
deleted file mode 100644
index b8fc4dc..0000000
--- a/app/src/main/res/values-en-rCA/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Wallpapers</string>
- <string name="main_loading">Loading\u2026</string>
- <string name="main_wallpaper_pick">Your images</string>
- <string name="apply_both_action">Home & lock screen</string>
- <string name="apply_home_action">Home screen</string>
- <string name="apply_lock_action">Lock screen</string>
- <string name="apply_success">Wallpaper applied</string>
- <string name="apply_failure">Unable to set this wallpaper</string>
- <string name="apply_close">Close</string>
- <string name="wallpaper_mono_black">Black</string>
- <string name="wallpaper_mono_blue">Blue</string>
- <string name="wallpaper_mono_brown">Brown</string>
- <string name="wallpaper_mono_cyan">Cyan</string>
- <string name="wallpaper_mono_green">Green</string>
- <string name="wallpaper_mono_orange">Orange</string>
- <string name="wallpaper_mono_pink">Pink</string>
- <string name="wallpaper_mono_purple">Purple</string>
- <string name="wallpaper_mono_red">Red</string>
- <string name="wallpaper_mono_teal">Teal</string>
- <string name="wallpaper_mono_white">White</string>
- <string name="wallpaper_mono_yellow">Yellow</string>
- <string name="wallpaper_gradient_iron">Iron</string>
- <string name="wallpaper_gradient_leaf">Leaf</string>
- <string name="wallpaper_gradient_lemon">Lemon</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Ocean</string>
- <string name="wallpaper_gradient_orange">Orange</string>
- <string name="wallpaper_gradient_peach">Peach</string>
- <string name="wallpaper_gradient_plum">Plum</string>
- <string name="wallpaper_gradient_shine">Shine</string>
-</resources>
diff --git a/app/src/main/res/values-en-rGB/strings.xml b/app/src/main/res/values-en-rGB/strings.xml
deleted file mode 100644
index b8fc4dc..0000000
--- a/app/src/main/res/values-en-rGB/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Wallpapers</string>
- <string name="main_loading">Loading\u2026</string>
- <string name="main_wallpaper_pick">Your images</string>
- <string name="apply_both_action">Home & lock screen</string>
- <string name="apply_home_action">Home screen</string>
- <string name="apply_lock_action">Lock screen</string>
- <string name="apply_success">Wallpaper applied</string>
- <string name="apply_failure">Unable to set this wallpaper</string>
- <string name="apply_close">Close</string>
- <string name="wallpaper_mono_black">Black</string>
- <string name="wallpaper_mono_blue">Blue</string>
- <string name="wallpaper_mono_brown">Brown</string>
- <string name="wallpaper_mono_cyan">Cyan</string>
- <string name="wallpaper_mono_green">Green</string>
- <string name="wallpaper_mono_orange">Orange</string>
- <string name="wallpaper_mono_pink">Pink</string>
- <string name="wallpaper_mono_purple">Purple</string>
- <string name="wallpaper_mono_red">Red</string>
- <string name="wallpaper_mono_teal">Teal</string>
- <string name="wallpaper_mono_white">White</string>
- <string name="wallpaper_mono_yellow">Yellow</string>
- <string name="wallpaper_gradient_iron">Iron</string>
- <string name="wallpaper_gradient_leaf">Leaf</string>
- <string name="wallpaper_gradient_lemon">Lemon</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Ocean</string>
- <string name="wallpaper_gradient_orange">Orange</string>
- <string name="wallpaper_gradient_peach">Peach</string>
- <string name="wallpaper_gradient_plum">Plum</string>
- <string name="wallpaper_gradient_shine">Shine</string>
-</resources>
diff --git a/app/src/main/res/values-en-rIN/strings.xml b/app/src/main/res/values-en-rIN/strings.xml
deleted file mode 100644
index b8fc4dc..0000000
--- a/app/src/main/res/values-en-rIN/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Wallpapers</string>
- <string name="main_loading">Loading\u2026</string>
- <string name="main_wallpaper_pick">Your images</string>
- <string name="apply_both_action">Home & lock screen</string>
- <string name="apply_home_action">Home screen</string>
- <string name="apply_lock_action">Lock screen</string>
- <string name="apply_success">Wallpaper applied</string>
- <string name="apply_failure">Unable to set this wallpaper</string>
- <string name="apply_close">Close</string>
- <string name="wallpaper_mono_black">Black</string>
- <string name="wallpaper_mono_blue">Blue</string>
- <string name="wallpaper_mono_brown">Brown</string>
- <string name="wallpaper_mono_cyan">Cyan</string>
- <string name="wallpaper_mono_green">Green</string>
- <string name="wallpaper_mono_orange">Orange</string>
- <string name="wallpaper_mono_pink">Pink</string>
- <string name="wallpaper_mono_purple">Purple</string>
- <string name="wallpaper_mono_red">Red</string>
- <string name="wallpaper_mono_teal">Teal</string>
- <string name="wallpaper_mono_white">White</string>
- <string name="wallpaper_mono_yellow">Yellow</string>
- <string name="wallpaper_gradient_iron">Iron</string>
- <string name="wallpaper_gradient_leaf">Leaf</string>
- <string name="wallpaper_gradient_lemon">Lemon</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Ocean</string>
- <string name="wallpaper_gradient_orange">Orange</string>
- <string name="wallpaper_gradient_peach">Peach</string>
- <string name="wallpaper_gradient_plum">Plum</string>
- <string name="wallpaper_gradient_shine">Shine</string>
-</resources>
diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml
deleted file mode 100644
index c5da382..0000000
--- a/app/src/main/res/values-et/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Taustapildid</string>
- <string name="main_loading">Laadimine\u2026</string>
- <string name="main_wallpaper_pick">Teie pildid</string>
- <string name="apply_both_action">Avaekraan & lukustuskuva</string>
- <string name="apply_home_action">Avaekraan</string>
- <string name="apply_lock_action">Lukustuskuva</string>
- <string name="apply_success">Taustapilt on määratud</string>
- <string name="apply_failure">Seda taustapilti ei saa määrata</string>
- <string name="apply_close">Sulge</string>
- <string name="wallpaper_mono_black">Must</string>
- <string name="wallpaper_mono_blue">Sinine</string>
- <string name="wallpaper_mono_brown">Pruun</string>
- <string name="wallpaper_mono_cyan">Erksinine</string>
- <string name="wallpaper_mono_green">Roheline</string>
- <string name="wallpaper_mono_orange">Oranž</string>
- <string name="wallpaper_mono_pink">Roosa</string>
- <string name="wallpaper_mono_purple">Lilla</string>
- <string name="wallpaper_mono_red">Punane</string>
- <string name="wallpaper_mono_teal">Sinakasroheline</string>
- <string name="wallpaper_mono_white">Valge</string>
- <string name="wallpaper_mono_yellow">Kollane</string>
- <string name="wallpaper_gradient_iron">Raud</string>
- <string name="wallpaper_gradient_leaf">Leht</string>
- <string name="wallpaper_gradient_lemon">Sidrun</string>
- <string name="wallpaper_gradient_neon">Neoon</string>
- <string name="wallpaper_gradient_ocean">Ookean</string>
- <string name="wallpaper_gradient_orange">Apelsin</string>
- <string name="wallpaper_gradient_peach">Virsik</string>
- <string name="wallpaper_gradient_plum">Ploom</string>
- <string name="wallpaper_gradient_shine">Läige</string>
-</resources>
diff --git a/app/src/main/res/values-eu/strings.xml b/app/src/main/res/values-eu/strings.xml
deleted file mode 100644
index d7154e5..0000000
--- a/app/src/main/res/values-eu/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Horma-paperak</string>
- <string name="main_loading">Kargatzen\u2026</string>
- <string name="main_wallpaper_pick">Zure irudiak</string>
- <string name="apply_both_action">Hasiera eta blokeo-pantaila</string>
- <string name="apply_home_action">Hasiera pantaila</string>
- <string name="apply_lock_action">Blokeo-pantaila</string>
- <string name="apply_success">Horma-papera ezarrita</string>
- <string name="apply_failure">Ezin izan da horma-paper hau ezarri</string>
- <string name="apply_close">Itxi</string>
- <string name="wallpaper_mono_black">Beltza</string>
- <string name="wallpaper_mono_blue">Urdina</string>
- <string name="wallpaper_mono_brown">Marroia</string>
- <string name="wallpaper_mono_cyan">Ziana</string>
- <string name="wallpaper_mono_green">Berdea</string>
- <string name="wallpaper_mono_orange">Laranja</string>
- <string name="wallpaper_mono_pink">Arrosa</string>
- <string name="wallpaper_mono_purple">Morea</string>
- <string name="wallpaper_mono_red">Gorria</string>
- <string name="wallpaper_mono_teal">Anila</string>
- <string name="wallpaper_mono_white">Zuria</string>
- <string name="wallpaper_mono_yellow">Horia</string>
- <string name="wallpaper_gradient_iron">Burdina</string>
- <string name="wallpaper_gradient_leaf">Hosto</string>
- <string name="wallpaper_gradient_lemon">Limoia</string>
- <string name="wallpaper_gradient_neon">Neona</string>
- <string name="wallpaper_gradient_ocean">Ozeanoa</string>
- <string name="wallpaper_gradient_orange">Laranja</string>
- <string name="wallpaper_gradient_peach">Melokotoi</string>
- <string name="wallpaper_gradient_plum">Arana</string>
- <string name="wallpaper_gradient_shine">Distira</string>
-</resources>
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
deleted file mode 100644
index a721a3b..0000000
--- a/app/src/main/res/values-fi/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Taustakuvat</string>
- <string name="main_loading">Ladataan\u2026</string>
- <string name="main_wallpaper_pick">Omat kuvasi</string>
- <string name="apply_both_action">Koti- ja lukitusnäyttö</string>
- <string name="apply_home_action">Kotinäyttö</string>
- <string name="apply_lock_action">Lukitusnäyttö</string>
- <string name="apply_success">Taustakuva asetettu</string>
- <string name="apply_failure">Taustakuvan asetus epäonnistui</string>
- <string name="apply_close">Sulje</string>
- <string name="wallpaper_mono_black">Musta</string>
- <string name="wallpaper_mono_blue">Sininen</string>
- <string name="wallpaper_mono_brown">Ruskea</string>
- <string name="wallpaper_mono_cyan">Turkoosi</string>
- <string name="wallpaper_mono_green">Vihreä</string>
- <string name="wallpaper_mono_orange">Oranssi</string>
- <string name="wallpaper_mono_pink">Pinkki</string>
- <string name="wallpaper_mono_purple">Purppura</string>
- <string name="wallpaper_mono_red">Punainen</string>
- <string name="wallpaper_mono_teal">Sinivihreä</string>
- <string name="wallpaper_mono_white">Valkoinen</string>
- <string name="wallpaper_mono_yellow">Keltainen</string>
- <string name="wallpaper_gradient_iron">Rauta</string>
- <string name="wallpaper_gradient_leaf">Lehti</string>
- <string name="wallpaper_gradient_lemon">Sitruuna</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Meri</string>
- <string name="wallpaper_gradient_orange">Oranssi</string>
- <string name="wallpaper_gradient_peach">Persikka</string>
- <string name="wallpaper_gradient_plum">Luumu</string>
- <string name="wallpaper_gradient_shine">Loiste</string>
-</resources>
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
deleted file mode 100644
index 07fe0ca..0000000
--- a/app/src/main/res/values-fr/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Fonds d\'écran</string>
- <string name="main_loading">Chargement\u2026</string>
- <string name="main_wallpaper_pick">Vos images</string>
- <string name="apply_both_action">Accueil & écran de verrouillage</string>
- <string name="apply_home_action">Écran d\'accueil</string>
- <string name="apply_lock_action">Écran de verrouillage</string>
- <string name="apply_success">Fond d\'écran appliqué</string>
- <string name="apply_failure">Impossible de définir le fond d’écran</string>
- <string name="apply_close">Fermer</string>
- <string name="wallpaper_mono_black">Noir</string>
- <string name="wallpaper_mono_blue">Bleu</string>
- <string name="wallpaper_mono_brown">Marron</string>
- <string name="wallpaper_mono_cyan">Cyan</string>
- <string name="wallpaper_mono_green">Vert</string>
- <string name="wallpaper_mono_orange">Orange</string>
- <string name="wallpaper_mono_pink">Rose</string>
- <string name="wallpaper_mono_purple">Violet</string>
- <string name="wallpaper_mono_red">Rouge</string>
- <string name="wallpaper_mono_teal">Turquoise</string>
- <string name="wallpaper_mono_white">Blanc</string>
- <string name="wallpaper_mono_yellow">Jaune</string>
- <string name="wallpaper_gradient_iron">Métal</string>
- <string name="wallpaper_gradient_leaf">Feuille</string>
- <string name="wallpaper_gradient_lemon">Citron</string>
- <string name="wallpaper_gradient_neon">Néon</string>
- <string name="wallpaper_gradient_ocean">Océan</string>
- <string name="wallpaper_gradient_orange">Orange</string>
- <string name="wallpaper_gradient_peach">Pêche</string>
- <string name="wallpaper_gradient_plum">Prune</string>
- <string name="wallpaper_gradient_shine">Éclat</string>
-</resources>
diff --git a/app/src/main/res/values-fy-rNL/strings.xml b/app/src/main/res/values-fy-rNL/strings.xml
deleted file mode 100644
index 2a86d1c..0000000
--- a/app/src/main/res/values-fy-rNL/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Eftergrûnen</string>
- <string name="main_loading">Lade\u2026</string>
- <string name="main_wallpaper_pick">Jo ôfbyldingen</string>
- <string name="apply_both_action">Start- en beskoattelingsskerm</string>
- <string name="apply_home_action">Startskerm</string>
- <string name="apply_lock_action">Beskoattelingsskerm</string>
- <string name="apply_success">Eftergrûn tapast</string>
- <string name="apply_failure">Eftergrûnôfbylding kin net tapast wurde</string>
- <string name="apply_close">Slute</string>
- <string name="wallpaper_mono_black">Swart</string>
- <string name="wallpaper_mono_blue">Blau</string>
- <string name="wallpaper_mono_brown">Brún</string>
- <string name="wallpaper_mono_cyan">Cyaan</string>
- <string name="wallpaper_mono_green">Grien</string>
- <string name="wallpaper_mono_orange">Oranje</string>
- <string name="wallpaper_mono_pink">Rose</string>
- <string name="wallpaper_mono_purple">Pears</string>
- <string name="wallpaper_mono_red">Read</string>
- <string name="wallpaper_mono_teal">Grienblau</string>
- <string name="wallpaper_mono_white">Wyt</string>
- <string name="wallpaper_mono_yellow">Giel</string>
- <string name="wallpaper_gradient_iron">Izer</string>
- <string name="wallpaper_gradient_leaf">Blêd</string>
- <string name="wallpaper_gradient_lemon">Sitroen</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Oseaan</string>
- <string name="wallpaper_gradient_orange">Oranje</string>
- <string name="wallpaper_gradient_peach">Perzik</string>
- <string name="wallpaper_gradient_plum">Prom</string>
- <string name="wallpaper_gradient_shine">Glâns</string>
-</resources>
diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml
deleted file mode 100644
index fe55ec4..0000000
--- a/app/src/main/res/values-gl/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Fondos de pantalla</string>
- <string name="main_loading">Cargando\u2026</string>
- <string name="main_wallpaper_pick">As túas images</string>
- <string name="apply_both_action">Pantallas de inicio e bloqueo</string>
- <string name="apply_home_action">Pantalla de inicio</string>
- <string name="apply_lock_action">Pantalla de bloqueo</string>
- <string name="apply_success">Fondo definido</string>
- <string name="apply_failure">Non é posíbel definir este fondo</string>
- <string name="apply_close">Pechar</string>
- <string name="wallpaper_mono_black">Negro</string>
- <string name="wallpaper_mono_blue">Azul</string>
- <string name="wallpaper_mono_brown">Marrón</string>
- <string name="wallpaper_mono_cyan">Ciano</string>
- <string name="wallpaper_mono_green">Verde</string>
- <string name="wallpaper_mono_orange">Laranxa</string>
- <string name="wallpaper_mono_pink">Rosa</string>
- <string name="wallpaper_mono_purple">Púrpura</string>
- <string name="wallpaper_mono_red">Vermello</string>
- <string name="wallpaper_mono_teal">Verde azulado</string>
- <string name="wallpaper_mono_white">Branco</string>
- <string name="wallpaper_mono_yellow">Amarelo</string>
- <string name="wallpaper_gradient_iron">Ferro</string>
- <string name="wallpaper_gradient_leaf">Folla</string>
- <string name="wallpaper_gradient_lemon">Limón</string>
- <string name="wallpaper_gradient_neon">Neón</string>
- <string name="wallpaper_gradient_ocean">Océano</string>
- <string name="wallpaper_gradient_orange">Laranxa</string>
- <string name="wallpaper_gradient_peach">Pexego</string>
- <string name="wallpaper_gradient_plum">Ameixa</string>
- <string name="wallpaper_gradient_shine">Brillante</string>
-</resources>
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
deleted file mode 100644
index a5f16d7..0000000
--- a/app/src/main/res/values-hu/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Háttérképek</string>
- <string name="main_loading">Betöltés\u2026</string>
- <string name="main_wallpaper_pick">Az Ön saját képei</string>
- <string name="apply_both_action">Kezdő és záróképernyő</string>
- <string name="apply_home_action">Kezdőképernyő</string>
- <string name="apply_lock_action">Képernyőzár</string>
- <string name="apply_success">A háttérkép beállítva</string>
- <string name="apply_failure">Ezt a háttérképet nem lehet beállítani</string>
- <string name="apply_close">Bezárás</string>
- <string name="wallpaper_mono_black">Fekete</string>
- <string name="wallpaper_mono_blue">Kék</string>
- <string name="wallpaper_mono_brown">Barna</string>
- <string name="wallpaper_mono_cyan">Ciánkék</string>
- <string name="wallpaper_mono_green">Zöld</string>
- <string name="wallpaper_mono_orange">Narancssárga</string>
- <string name="wallpaper_mono_pink">Rózsaszín</string>
- <string name="wallpaper_mono_purple">Lila</string>
- <string name="wallpaper_mono_red">Vörös</string>
- <string name="wallpaper_mono_teal">Türkiz</string>
- <string name="wallpaper_mono_white">Fehér</string>
- <string name="wallpaper_mono_yellow">Citromsárga</string>
- <string name="wallpaper_gradient_iron">Vas</string>
- <string name="wallpaper_gradient_leaf">Falevél</string>
- <string name="wallpaper_gradient_lemon">Citrom</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Óceán</string>
- <string name="wallpaper_gradient_orange">Narancs</string>
- <string name="wallpaper_gradient_peach">Őszibarack</string>
- <string name="wallpaper_gradient_plum">Szilva</string>
- <string name="wallpaper_gradient_shine">Ragyogó</string>
-</resources>
diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml
deleted file mode 100644
index 6a70bfb..0000000
--- a/app/src/main/res/values-in/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Wallpaper</string>
- <string name="main_loading">Memuat\u2026</string>
- <string name="main_wallpaper_pick">Gambar Anda</string>
- <string name="apply_both_action">Beranda & layar kunci</string>
- <string name="apply_home_action">Layar beranda</string>
- <string name="apply_lock_action">Layar kunci</string>
- <string name="apply_success">Wallpaper diterapkan</string>
- <string name="apply_failure">Tidak dapat menetapkan wallpaper ini</string>
- <string name="apply_close">Tutup</string>
- <string name="wallpaper_mono_black">Hitam</string>
- <string name="wallpaper_mono_blue">Biru</string>
- <string name="wallpaper_mono_brown">Cokelat</string>
- <string name="wallpaper_mono_cyan">Sian</string>
- <string name="wallpaper_mono_green">Hijau</string>
- <string name="wallpaper_mono_orange">Oranye</string>
- <string name="wallpaper_mono_pink">Merah muda</string>
- <string name="wallpaper_mono_purple">Ungu</string>
- <string name="wallpaper_mono_red">Merah</string>
- <string name="wallpaper_mono_teal">Hijau kebiruan</string>
- <string name="wallpaper_mono_white">Putih</string>
- <string name="wallpaper_mono_yellow">Kuning</string>
- <string name="wallpaper_gradient_iron">Besi</string>
- <string name="wallpaper_gradient_leaf">Daun</string>
- <string name="wallpaper_gradient_lemon">Lemon</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Lautan</string>
- <string name="wallpaper_gradient_orange">Oranye</string>
- <string name="wallpaper_gradient_peach">Persik</string>
- <string name="wallpaper_gradient_plum">Plum</string>
- <string name="wallpaper_gradient_shine">Berseri</string>
-</resources>
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
deleted file mode 100644
index 20a1581..0000000
--- a/app/src/main/res/values-it/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Sfondi</string>
- <string name="main_loading">Caricamento\u2026</string>
- <string name="main_wallpaper_pick">Le tue immagini</string>
- <string name="apply_both_action">Schermata home & sblocco</string>
- <string name="apply_home_action">Schermata home</string>
- <string name="apply_lock_action">Schermata di sblocco</string>
- <string name="apply_success">Sfondo applicato</string>
- <string name="apply_failure">Impossibile impostare questo sfondo</string>
- <string name="apply_close">Chiudi</string>
- <string name="wallpaper_mono_black">Nero</string>
- <string name="wallpaper_mono_blue">Blu</string>
- <string name="wallpaper_mono_brown">Marrone</string>
- <string name="wallpaper_mono_cyan">Azzurro</string>
- <string name="wallpaper_mono_green">Verde</string>
- <string name="wallpaper_mono_orange">Arancione</string>
- <string name="wallpaper_mono_pink">Rosa</string>
- <string name="wallpaper_mono_purple">Viola</string>
- <string name="wallpaper_mono_red">Rosso</string>
- <string name="wallpaper_mono_teal">Verde acqua</string>
- <string name="wallpaper_mono_white">Bianco</string>
- <string name="wallpaper_mono_yellow">Giallo</string>
- <string name="wallpaper_gradient_iron">Ferro</string>
- <string name="wallpaper_gradient_leaf">Foglia</string>
- <string name="wallpaper_gradient_lemon">Limone</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Oceano</string>
- <string name="wallpaper_gradient_orange">Arancia</string>
- <string name="wallpaper_gradient_peach">Pesca</string>
- <string name="wallpaper_gradient_plum">Prugna</string>
- <string name="wallpaper_gradient_shine">Bagliore</string>
-</resources>
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
deleted file mode 100644
index 4e1e621..0000000
--- a/app/src/main/res/values-ja/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">壁紙</string>
- <string name="main_loading">読み込み中...</string>
- <string name="main_wallpaper_pick">端末内の画像</string>
- <string name="apply_both_action">ホーム画面とロック画面</string>
- <string name="apply_home_action">ホーム画面</string>
- <string name="apply_lock_action">ロック画面</string>
- <string name="apply_success">壁紙を設定しました</string>
- <string name="apply_failure">この壁紙を設定できません</string>
- <string name="apply_close">閉じる</string>
- <string name="wallpaper_mono_black">ブラック</string>
- <string name="wallpaper_mono_blue">ブルー</string>
- <string name="wallpaper_mono_brown">ブラウン</string>
- <string name="wallpaper_mono_cyan">シアン</string>
- <string name="wallpaper_mono_green">グリーン</string>
- <string name="wallpaper_mono_orange">オレンジ</string>
- <string name="wallpaper_mono_pink">ピンク</string>
- <string name="wallpaper_mono_purple">パープル</string>
- <string name="wallpaper_mono_red">レッド</string>
- <string name="wallpaper_mono_teal">ティール</string>
- <string name="wallpaper_mono_white">ホワイト</string>
- <string name="wallpaper_mono_yellow">イエロー</string>
- <string name="wallpaper_gradient_iron">アイアン</string>
- <string name="wallpaper_gradient_leaf">リーフ</string>
- <string name="wallpaper_gradient_lemon">レモン</string>
- <string name="wallpaper_gradient_neon">ネオン</string>
- <string name="wallpaper_gradient_ocean">オーシャン</string>
- <string name="wallpaper_gradient_orange">オレンジ</string>
- <string name="wallpaper_gradient_peach">ピーチ</string>
- <string name="wallpaper_gradient_plum">プラム</string>
- <string name="wallpaper_gradient_shine">シャイン</string>
-</resources>
diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml
deleted file mode 100644
index 35eebec..0000000
--- a/app/src/main/res/values-ko/strings.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">배경화면</string>
- <string name="main_loading">불러오는 중\u2026</string>
- <string name="main_wallpaper_pick">내 이미지</string>
- <string name="apply_both_action">홈 및 잠금 화면</string>
- <string name="apply_home_action">홈 화면</string>
- <string name="apply_lock_action">잠금 화면</string>
- <string name="apply_success">배경화면이 적용되었습니다.</string>
- <string name="apply_failure">이 배경화면을 사용 설정할 수 없습니다.</string>
- <string name="apply_close">닫기</string>
- <string name="wallpaper_mono_black">검정색</string>
- <string name="wallpaper_mono_blue">파란색</string>
- <string name="wallpaper_mono_brown">갈색</string>
- <string name="wallpaper_mono_cyan">청록색</string>
- <string name="wallpaper_mono_green">초록색</string>
- <string name="wallpaper_mono_orange">주황색</string>
- <string name="wallpaper_mono_pink">분홍색</string>
- <string name="wallpaper_mono_purple">보라색</string>
- <string name="wallpaper_mono_red">빨간색</string>
- <string name="wallpaper_mono_teal">짙은 청록색</string>
- <string name="wallpaper_mono_white">흰색</string>
- <string name="wallpaper_mono_yellow">노란색</string>
- <string name="wallpaper_gradient_lemon">레몬</string>
- <string name="wallpaper_gradient_neon">네온</string>
- <string name="wallpaper_gradient_ocean">바다</string>
- <string name="wallpaper_gradient_orange">오렌지</string>
- <string name="wallpaper_gradient_peach">복숭아</string>
- <string name="wallpaper_gradient_plum">자두</string>
-</resources>
diff --git a/app/src/main/res/values-land/dimens.xml b/app/src/main/res/values-land/dimens.xml
deleted file mode 100644
index 59ea9cb..0000000
--- a/app/src/main/res/values-land/dimens.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <dimen name="main_list_margin_left">48dp</dimen>
-
- <dimen name="apply_margin_horizontal">40dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/app/src/main/res/values-night/bools.xml b/app/src/main/res/values-night/bools.xml
deleted file mode 100644
index 71b13a5..0000000
--- a/app/src/main/res/values-night/bools.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <bool name="isLight">false</bool>
-</resources>
\ No newline at end of file
diff --git a/app/src/main/res/values-night/colors.xml b/app/src/main/res/values-night/colors.xml
deleted file mode 100644
index 15d8a35..0000000
--- a/app/src/main/res/values-night/colors.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <color name="colorPrimary">#212121</color>
- <color name="colorPrimaryDark">#000000</color>
-</resources>
\ No newline at end of file
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
deleted file mode 100644
index cb99a6e..0000000
--- a/app/src/main/res/values-nl/strings.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Achtergronden</string>
- <string name="main_loading">Laden\u2026</string>
- <string name="main_wallpaper_pick">Uw afbeeldingen</string>
- <string name="apply_both_action">Thuis- en vergrendelingsscherm</string>
- <string name="apply_home_action">Thuisscherm</string>
- <string name="apply_lock_action">Vergrendelingsscherm</string>
- <string name="apply_success">Achtergrond toegepast</string>
- <string name="apply_failure">Achtergrondafbeelding kan niet worden toegepast</string>
- <string name="wallpaper_mono_black">Zwart</string>
- <string name="wallpaper_mono_blue">Blauw</string>
- <string name="wallpaper_mono_brown">Bruin</string>
- <string name="wallpaper_mono_cyan">Cyaan</string>
- <string name="wallpaper_mono_green">Groen</string>
- <string name="wallpaper_mono_orange">Oranje</string>
- <string name="wallpaper_mono_pink">Roze</string>
- <string name="wallpaper_mono_purple">Paars</string>
- <string name="wallpaper_mono_red">Rood</string>
- <string name="wallpaper_mono_teal">Groenblauw</string>
- <string name="wallpaper_mono_white">Wit</string>
- <string name="wallpaper_mono_yellow">Geel</string>
- <string name="wallpaper_gradient_iron">IJzer</string>
- <string name="wallpaper_gradient_leaf">Blad</string>
- <string name="wallpaper_gradient_lemon">Citroen</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Oceaan</string>
- <string name="wallpaper_gradient_orange">Oranje</string>
- <string name="wallpaper_gradient_peach">Perzik</string>
- <string name="wallpaper_gradient_plum">Pruim</string>
- <string name="wallpaper_gradient_shine">Glans</string>
-</resources>
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
deleted file mode 100644
index 482b328..0000000
--- a/app/src/main/res/values-pl/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Tapety</string>
- <string name="main_loading">Ładowanie\u2026</string>
- <string name="main_wallpaper_pick">Twoje obrazy</string>
- <string name="apply_both_action">Ekran główny i blokady</string>
- <string name="apply_home_action">Ekran główny</string>
- <string name="apply_lock_action">Ekran blokady</string>
- <string name="apply_success">Tapeta ustawiona</string>
- <string name="apply_failure">Nie można ustawić tapety</string>
- <string name="apply_close">Zamknij</string>
- <string name="wallpaper_mono_black">Czarna</string>
- <string name="wallpaper_mono_blue">Niebieska</string>
- <string name="wallpaper_mono_brown">Brązowa</string>
- <string name="wallpaper_mono_cyan">Turkusowa</string>
- <string name="wallpaper_mono_green">Zielona</string>
- <string name="wallpaper_mono_orange">Pomarańczowa</string>
- <string name="wallpaper_mono_pink">Różowa</string>
- <string name="wallpaper_mono_purple">Fioletowa</string>
- <string name="wallpaper_mono_red">Czerwona</string>
- <string name="wallpaper_mono_teal">Morska</string>
- <string name="wallpaper_mono_white">Biała</string>
- <string name="wallpaper_mono_yellow">Żółta</string>
- <string name="wallpaper_gradient_iron">Żelazny</string>
- <string name="wallpaper_gradient_leaf">Liściasty</string>
- <string name="wallpaper_gradient_lemon">Cytrynowy</string>
- <string name="wallpaper_gradient_neon">Neonowy</string>
- <string name="wallpaper_gradient_ocean">Błękitny</string>
- <string name="wallpaper_gradient_orange">Pomarańczowy</string>
- <string name="wallpaper_gradient_peach">Brzoskwiniowy</string>
- <string name="wallpaper_gradient_plum">Śliwkowy</string>
- <string name="wallpaper_gradient_shine">Błyszczący</string>
-</resources>
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
deleted file mode 100644
index 816b963..0000000
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Papéis de parede</string>
- <string name="main_loading">Carregando\u2026</string>
- <string name="main_wallpaper_pick">Suas imagens</string>
- <string name="apply_both_action">Tela inicial e de bloqueio</string>
- <string name="apply_home_action">Tela inicial</string>
- <string name="apply_lock_action">Tela de bloqueio</string>
- <string name="apply_success">Papel de parede aplicado</string>
- <string name="apply_failure">Não foi possível aplicar este papel de parede</string>
- <string name="apply_close">Fechar</string>
- <string name="wallpaper_mono_black">Preto</string>
- <string name="wallpaper_mono_blue">Azul</string>
- <string name="wallpaper_mono_brown">Marrom</string>
- <string name="wallpaper_mono_cyan">Ciano</string>
- <string name="wallpaper_mono_green">Verde</string>
- <string name="wallpaper_mono_orange">Laranja</string>
- <string name="wallpaper_mono_pink">Rosa</string>
- <string name="wallpaper_mono_purple">Violeta</string>
- <string name="wallpaper_mono_red">Vermelho</string>
- <string name="wallpaper_mono_teal">Verde-azulado</string>
- <string name="wallpaper_mono_white">Branco</string>
- <string name="wallpaper_mono_yellow">Amarelo</string>
- <string name="wallpaper_gradient_iron">Ferro</string>
- <string name="wallpaper_gradient_leaf">Folha</string>
- <string name="wallpaper_gradient_lemon">Limão</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Oceano</string>
- <string name="wallpaper_gradient_orange">Laranja</string>
- <string name="wallpaper_gradient_peach">Pêssego</string>
- <string name="wallpaper_gradient_plum">Ameixa</string>
- <string name="wallpaper_gradient_shine">Brilhante</string>
-</resources>
diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml
deleted file mode 100644
index 7d6d4b2..0000000
--- a/app/src/main/res/values-pt-rPT/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Imagens de fundo</string>
- <string name="main_loading">A carregar\u2026</string>
- <string name="main_wallpaper_pick">As suas imagens</string>
- <string name="apply_both_action">Ecrã inicial e ecrã de bloqueio</string>
- <string name="apply_home_action">Ecrã inicial</string>
- <string name="apply_lock_action">Ecrã de bloqueio</string>
- <string name="apply_success">Imagem de fundo aplicada</string>
- <string name="apply_failure">Não foi possível aplicar a imagem de fundo</string>
- <string name="apply_close">Fechar</string>
- <string name="wallpaper_mono_black">Preto</string>
- <string name="wallpaper_mono_blue">Azul</string>
- <string name="wallpaper_mono_brown">Castanho</string>
- <string name="wallpaper_mono_cyan">Ciano</string>
- <string name="wallpaper_mono_green">Verde</string>
- <string name="wallpaper_mono_orange">Cor de laranja</string>
- <string name="wallpaper_mono_pink">Cor-de-rosa</string>
- <string name="wallpaper_mono_purple">Roxo</string>
- <string name="wallpaper_mono_red">Vermelho</string>
- <string name="wallpaper_mono_teal">Azul esverdeado</string>
- <string name="wallpaper_mono_white">Branco</string>
- <string name="wallpaper_mono_yellow">Amarelo</string>
- <string name="wallpaper_gradient_iron">Ferro</string>
- <string name="wallpaper_gradient_leaf">Folha</string>
- <string name="wallpaper_gradient_lemon">Limão</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Oceano</string>
- <string name="wallpaper_gradient_orange">Cor de laranja</string>
- <string name="wallpaper_gradient_peach">Pêssego</string>
- <string name="wallpaper_gradient_plum">Ameixa</string>
- <string name="wallpaper_gradient_shine">Brilhante</string>
-</resources>
diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml
deleted file mode 100644
index b83c243..0000000
--- a/app/src/main/res/values-ro/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Imagini de fundal</string>
- <string name="main_loading">Încărcare\u2026</string>
- <string name="main_wallpaper_pick">Imaginile dvs.</string>
- <string name="apply_both_action">Acasă & ecran de blocare</string>
- <string name="apply_home_action">Ecranul Acasă</string>
- <string name="apply_lock_action">Ecran de blocare</string>
- <string name="apply_success">Imagine de fundal aplicată</string>
- <string name="apply_failure">Nu s-a putut aplica imaginea de fundal</string>
- <string name="apply_close">Închide</string>
- <string name="wallpaper_mono_black">Negru</string>
- <string name="wallpaper_mono_blue">Albastru</string>
- <string name="wallpaper_mono_brown">Maro</string>
- <string name="wallpaper_mono_cyan">Cyan</string>
- <string name="wallpaper_mono_green">Verde</string>
- <string name="wallpaper_mono_orange">Portocaliu</string>
- <string name="wallpaper_mono_pink">Roz</string>
- <string name="wallpaper_mono_purple">Mov</string>
- <string name="wallpaper_mono_red">Roșu</string>
- <string name="wallpaper_mono_teal">Turcoaz</string>
- <string name="wallpaper_mono_white">Alb</string>
- <string name="wallpaper_mono_yellow">Galben</string>
- <string name="wallpaper_gradient_iron">Fier</string>
- <string name="wallpaper_gradient_leaf">Frunze</string>
- <string name="wallpaper_gradient_lemon">Lămâie</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Ocean</string>
- <string name="wallpaper_gradient_orange">Portocaliu</string>
- <string name="wallpaper_gradient_peach">Piersică</string>
- <string name="wallpaper_gradient_plum">Prună</string>
- <string name="wallpaper_gradient_shine">Strălucire</string>
-</resources>
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
deleted file mode 100644
index 066de1a..0000000
--- a/app/src/main/res/values-ru/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Обои</string>
- <string name="main_loading">Загрузка\u2026</string>
- <string name="main_wallpaper_pick">Ваши изображения</string>
- <string name="apply_both_action">Домашний экран и экран блокировки</string>
- <string name="apply_home_action">Домашний экран</string>
- <string name="apply_lock_action">Экран блокировки</string>
- <string name="apply_success">Обои установлены</string>
- <string name="apply_failure">Невозможно установить эти обои</string>
- <string name="apply_close">Закрыть</string>
- <string name="wallpaper_mono_black">Черный</string>
- <string name="wallpaper_mono_blue">Синий</string>
- <string name="wallpaper_mono_brown">Коричневый</string>
- <string name="wallpaper_mono_cyan">Голубой</string>
- <string name="wallpaper_mono_green">Зеленый</string>
- <string name="wallpaper_mono_orange">Оранжевый</string>
- <string name="wallpaper_mono_pink">Розовый</string>
- <string name="wallpaper_mono_purple">Фиолетовый</string>
- <string name="wallpaper_mono_red">Красный</string>
- <string name="wallpaper_mono_teal">Бирюза</string>
- <string name="wallpaper_mono_white">Белый</string>
- <string name="wallpaper_mono_yellow">Желтый</string>
- <string name="wallpaper_gradient_iron">Железо</string>
- <string name="wallpaper_gradient_leaf">Листва</string>
- <string name="wallpaper_gradient_lemon">Лимон</string>
- <string name="wallpaper_gradient_neon">Неон</string>
- <string name="wallpaper_gradient_ocean">Океан</string>
- <string name="wallpaper_gradient_orange">Оранжевый</string>
- <string name="wallpaper_gradient_peach">Персик</string>
- <string name="wallpaper_gradient_plum">Слива</string>
- <string name="wallpaper_gradient_shine">Сияние</string>
-</resources>
diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml
deleted file mode 100644
index 600a092..0000000
--- a/app/src/main/res/values-sl/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Slike ozadja</string>
- <string name="main_loading">Nalaganje \u2026</string>
- <string name="main_wallpaper_pick">Vaše slike</string>
- <string name="apply_both_action">Domači in zaklenjen zaslon</string>
- <string name="apply_home_action">Domači zaslon</string>
- <string name="apply_lock_action">Zaklenjen zaslon</string>
- <string name="apply_success">Slika ozadja uveljavljena</string>
- <string name="apply_failure">Ni mogoče nastaviti te slike ozadja</string>
- <string name="apply_close">Zapri</string>
- <string name="wallpaper_mono_black">Črna</string>
- <string name="wallpaper_mono_blue">Modra</string>
- <string name="wallpaper_mono_brown">Rjava</string>
- <string name="wallpaper_mono_cyan">Sinje modra</string>
- <string name="wallpaper_mono_green">Zelena</string>
- <string name="wallpaper_mono_orange">Oranžna</string>
- <string name="wallpaper_mono_pink">Roza</string>
- <string name="wallpaper_mono_purple">Vijolična</string>
- <string name="wallpaper_mono_red">Rdeča</string>
- <string name="wallpaper_mono_teal">Turkizna</string>
- <string name="wallpaper_mono_white">Bela</string>
- <string name="wallpaper_mono_yellow">Rumena</string>
- <string name="wallpaper_gradient_iron">Železo</string>
- <string name="wallpaper_gradient_leaf">List</string>
- <string name="wallpaper_gradient_lemon">Limona</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Ocean</string>
- <string name="wallpaper_gradient_orange">Pomaranča</string>
- <string name="wallpaper_gradient_peach">Breskev</string>
- <string name="wallpaper_gradient_plum">Sliva</string>
- <string name="wallpaper_gradient_shine">Sijaj</string>
-</resources>
diff --git a/app/src/main/res/values-sq/strings.xml b/app/src/main/res/values-sq/strings.xml
deleted file mode 100644
index 57ca245..0000000
--- a/app/src/main/res/values-sq/strings.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Sfonde</string>
- <string name="main_loading">Duke u ngarkuar\u2026</string>
- <string name="main_wallpaper_pick">Imazhet e tua</string>
- <string name="apply_both_action">Ekranin kryesor & kyçur</string>
- <string name="apply_home_action">Ekrani kryesor</string>
- <string name="apply_lock_action">Ekrani i kyçur</string>
- <string name="apply_success">Sfondi u vendos</string>
- <string name="apply_failure">E pa mundur për tu vendosur ky sfond</string>
- <string name="apply_close">Mbyll</string>
- <string name="wallpaper_mono_black">E zezë</string>
- <string name="wallpaper_mono_blue">Blu</string>
- <string name="wallpaper_mono_brown">Kafe</string>
- <string name="wallpaper_mono_cyan">E bruztë</string>
- <string name="wallpaper_mono_green">E gjelbër</string>
- <string name="wallpaper_mono_orange">Portokalli</string>
- <string name="wallpaper_mono_pink">Rozë</string>
- <string name="wallpaper_mono_purple">Lejla</string>
- <string name="wallpaper_mono_red">E kuqe</string>
- <string name="wallpaper_mono_teal">Gurkali</string>
- <string name="wallpaper_mono_white">E bardhë</string>
- <string name="wallpaper_mono_yellow">E verdhë</string>
- <string name="wallpaper_gradient_iron">Hekur</string>
- <string name="wallpaper_gradient_leaf">Gjethe</string>
- <string name="wallpaper_gradient_lemon">Limon</string>
- <string name="wallpaper_gradient_ocean">Oqean</string>
- <string name="wallpaper_gradient_orange">Portokall</string>
- <string name="wallpaper_gradient_peach">Pjeshkë</string>
- <string name="wallpaper_gradient_plum">Kumbull</string>
-</resources>
diff --git a/app/src/main/res/values-sw600dp-land/dimens.xml b/app/src/main/res/values-sw600dp-land/dimens.xml
deleted file mode 100644
index 7668f22..0000000
--- a/app/src/main/res/values-sw600dp-land/dimens.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <dimen name="main_list_margin_left">0dp</dimen>
-
- <dimen name="apply_margin_horizontal">80dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/app/src/main/res/values-sw600dp/config.xml b/app/src/main/res/values-sw600dp/config.xml
deleted file mode 100644
index 3922937..0000000
--- a/app/src/main/res/values-sw600dp/config.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <integer name="main_list_columns">3</integer>
-</resources>
diff --git a/app/src/main/res/values-sw600dp/dimens.xml b/app/src/main/res/values-sw600dp/dimens.xml
deleted file mode 100644
index 400f437..0000000
--- a/app/src/main/res/values-sw600dp/dimens.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <dimen name="main_list_margin_left">0dp</dimen>
-
- <dimen name="apply_margin_horizontal">40dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/app/src/main/res/values-sw720dp/config.xml b/app/src/main/res/values-sw720dp/config.xml
deleted file mode 100644
index e7b7887..0000000
--- a/app/src/main/res/values-sw720dp/config.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <integer name="main_list_columns">4</integer>
-</resources>
diff --git a/app/src/main/res/values-th/strings.xml b/app/src/main/res/values-th/strings.xml
deleted file mode 100644
index 7a8e77c..0000000
--- a/app/src/main/res/values-th/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">ภาพพื้นหลัง</string>
- <string name="main_loading">กำลังโหลด\u2026</string>
- <string name="main_wallpaper_pick">ภาพของคุณ</string>
- <string name="apply_both_action">หน้าจอหลัก & หน้าจอล็อค</string>
- <string name="apply_home_action">หน้าจอหลัก</string>
- <string name="apply_lock_action">หน้าจอล็อค</string>
- <string name="apply_success">ติดตั้งภาพพื้นหลังแล้ว</string>
- <string name="apply_failure">ไม่สามารถที่จะตั้งภาพพื้นหลังนี้</string>
- <string name="apply_close">ปิด</string>
- <string name="wallpaper_mono_black">ดำ</string>
- <string name="wallpaper_mono_blue">น้ำเงิน</string>
- <string name="wallpaper_mono_brown">น้ำตาล</string>
- <string name="wallpaper_mono_cyan">ฟ้า</string>
- <string name="wallpaper_mono_green">เขียว</string>
- <string name="wallpaper_mono_orange">ส้ม</string>
- <string name="wallpaper_mono_pink">ชมพู</string>
- <string name="wallpaper_mono_purple">ม่วง</string>
- <string name="wallpaper_mono_red">แดง</string>
- <string name="wallpaper_mono_teal">เขียวนกเป็ดน้ำ</string>
- <string name="wallpaper_mono_white">ขาว</string>
- <string name="wallpaper_mono_yellow">เหลือง</string>
- <string name="wallpaper_gradient_iron">เหล็ก</string>
- <string name="wallpaper_gradient_leaf">ใบไม้</string>
- <string name="wallpaper_gradient_lemon">มะนาว</string>
- <string name="wallpaper_gradient_neon">นีออน</string>
- <string name="wallpaper_gradient_ocean">มหาสมุทร</string>
- <string name="wallpaper_gradient_orange">ส้ม</string>
- <string name="wallpaper_gradient_peach">ลูกพีช</string>
- <string name="wallpaper_gradient_plum">พลัม</string>
- <string name="wallpaper_gradient_shine">แจ่มใส</string>
-</resources>
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
deleted file mode 100644
index 957e8c6..0000000
--- a/app/src/main/res/values-tr/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Duvar kağıtları</string>
- <string name="main_loading">Yükleniyor\u2026</string>
- <string name="main_wallpaper_pick">Resimleriniz</string>
- <string name="apply_both_action">Ana ekran ve kilit ekranı</string>
- <string name="apply_home_action">Ana ekran</string>
- <string name="apply_lock_action">Kilit ekranı</string>
- <string name="apply_success">Duvar kağıdı uygulandı</string>
- <string name="apply_failure">Bu duvar kağıdı ayarlanamadı</string>
- <string name="apply_close">Kapat</string>
- <string name="wallpaper_mono_black">Siyah</string>
- <string name="wallpaper_mono_blue">Mavi</string>
- <string name="wallpaper_mono_brown">Kahverengi</string>
- <string name="wallpaper_mono_cyan">Camgöbeği</string>
- <string name="wallpaper_mono_green">Yeşil</string>
- <string name="wallpaper_mono_orange">Turuncu</string>
- <string name="wallpaper_mono_pink">Pembe</string>
- <string name="wallpaper_mono_purple">Mor</string>
- <string name="wallpaper_mono_red">Kırmızı</string>
- <string name="wallpaper_mono_teal">Deniz mavisi</string>
- <string name="wallpaper_mono_white">Beyaz</string>
- <string name="wallpaper_mono_yellow">Sarı</string>
- <string name="wallpaper_gradient_iron">Demir</string>
- <string name="wallpaper_gradient_leaf">Yaprak</string>
- <string name="wallpaper_gradient_lemon">Limon</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Okyanus</string>
- <string name="wallpaper_gradient_orange">Turuncu</string>
- <string name="wallpaper_gradient_peach">Şeftali</string>
- <string name="wallpaper_gradient_plum">Erik</string>
- <string name="wallpaper_gradient_shine">Parıltı</string>
-</resources>
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
deleted file mode 100644
index 08efef4..0000000
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">壁纸</string>
- <string name="main_loading">正在载入\u2026</string>
- <string name="main_wallpaper_pick">您的图像</string>
- <string name="apply_both_action">主屏和锁屏界面</string>
- <string name="apply_home_action">主屏幕</string>
- <string name="apply_lock_action">锁屏</string>
- <string name="apply_success">壁纸已应用</string>
- <string name="apply_failure">无法应用壁纸</string>
- <string name="apply_close">关闭</string>
- <string name="wallpaper_mono_black">黑</string>
- <string name="wallpaper_mono_blue">蓝</string>
- <string name="wallpaper_mono_brown">棕</string>
- <string name="wallpaper_mono_cyan">青</string>
- <string name="wallpaper_mono_green">绿</string>
- <string name="wallpaper_mono_orange">橙</string>
- <string name="wallpaper_mono_pink">粉</string>
- <string name="wallpaper_mono_purple">紫</string>
- <string name="wallpaper_mono_red">红</string>
- <string name="wallpaper_mono_teal">鸭绿</string>
- <string name="wallpaper_mono_white">白</string>
- <string name="wallpaper_mono_yellow">黄</string>
- <string name="wallpaper_gradient_iron">铁</string>
- <string name="wallpaper_gradient_leaf">叶</string>
- <string name="wallpaper_gradient_lemon">柠檬</string>
- <string name="wallpaper_gradient_neon">霓虹</string>
- <string name="wallpaper_gradient_ocean">海洋</string>
- <string name="wallpaper_gradient_orange">橙</string>
- <string name="wallpaper_gradient_peach">桃</string>
- <string name="wallpaper_gradient_plum">紫红</string>
- <string name="wallpaper_gradient_shine">阳光</string>
-</resources>
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
deleted file mode 100644
index ea41c1f..0000000
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--Generated by crowdin.com-->
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">桌布</string>
- <string name="main_loading">載入中\u2026</string>
- <string name="main_wallpaper_pick">你的圖片</string>
- <string name="apply_both_action">桌面及鎖定畫面</string>
- <string name="apply_home_action">主畫面</string>
- <string name="apply_lock_action">鎖定畫面</string>
- <string name="apply_success">已套用桌布</string>
- <string name="apply_failure">無法設定此桌布</string>
- <string name="apply_close">關閉</string>
- <string name="wallpaper_mono_black">黑色</string>
- <string name="wallpaper_mono_blue">藍色</string>
- <string name="wallpaper_mono_brown">棕色</string>
- <string name="wallpaper_mono_cyan">青色</string>
- <string name="wallpaper_mono_green">綠色</string>
- <string name="wallpaper_mono_orange">橙色</string>
- <string name="wallpaper_mono_pink">粉色</string>
- <string name="wallpaper_mono_purple">紫色</string>
- <string name="wallpaper_mono_red">紅色</string>
- <string name="wallpaper_mono_teal">深青色</string>
- <string name="wallpaper_mono_white">白色</string>
- <string name="wallpaper_mono_yellow">黃色</string>
- <string name="wallpaper_gradient_iron">鐵</string>
- <string name="wallpaper_gradient_leaf">葉子</string>
- <string name="wallpaper_gradient_lemon">檸檬</string>
- <string name="wallpaper_gradient_neon">霓虹色</string>
- <string name="wallpaper_gradient_ocean">海洋</string>
- <string name="wallpaper_gradient_orange">橙色</string>
- <string name="wallpaper_gradient_peach">桃色</string>
- <string name="wallpaper_gradient_plum">梅紅色</string>
- <string name="wallpaper_gradient_shine">陽光</string>
-</resources>
diff --git a/app/src/main/res/values/array.xml b/app/src/main/res/values/array.xml
deleted file mode 100644
index f489aa4..0000000
--- a/app/src/main/res/values/array.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <!-- Mono -->
- <array name="wallpaper_mono_colors">
- <item>@color/wallpaper_color_black</item>
- <item>@color/wallpaper_color_green</item>
- <item>@color/wallpaper_color_teal</item>
- <item>@color/wallpaper_color_cyan</item>
- <item>@color/wallpaper_color_blue</item>
- <item>@color/wallpaper_color_purple</item>
- <item>@color/wallpaper_color_pink</item>
- <item>@color/wallpaper_color_red</item>
- <item>@color/wallpaper_color_orange</item>
- <item>@color/wallpaper_color_yellow</item>
- <item>@color/wallpaper_color_brown</item>
- <item>@color/wallpaper_color_white</item>
- </array>
-
- <string-array name="wallpaper_mono_names">
- <item>@string/wallpaper_mono_black</item>
- <item>@string/wallpaper_mono_green</item>
- <item>@string/wallpaper_mono_teal</item>
- <item>@string/wallpaper_mono_cyan</item>
- <item>@string/wallpaper_mono_blue</item>
- <item>@string/wallpaper_mono_purple</item>
- <item>@string/wallpaper_mono_pink</item>
- <item>@string/wallpaper_mono_red</item>
- <item>@string/wallpaper_mono_orange</item>
- <item>@string/wallpaper_mono_yellow</item>
- <item>@string/wallpaper_mono_brown</item>
- <item>@string/wallpaper_mono_white</item>
- </string-array>
-
- <!-- Gradients -->
- <array name="wallpaper_gradient_drawables">
- <item>@drawable/gradient_iron</item>
- <item>@drawable/gradient_leaf</item>
- <item>@drawable/gradient_lemon</item>
- <item>@drawable/gradient_neon</item>
- <item>@drawable/gradient_ocean</item>
- <item>@drawable/gradient_orange</item>
- <item>@drawable/gradient_peach</item>
- <item>@drawable/gradient_plum</item>
- <item>@drawable/gradient_shine</item>
- </array>
-
- <string-array name="wallpaper_gradient_names">
- <item>@string/wallpaper_gradient_iron</item>
- <item>@string/wallpaper_gradient_leaf</item>
- <item>@string/wallpaper_gradient_lemon</item>
- <item>@string/wallpaper_gradient_neon</item>
- <item>@string/wallpaper_gradient_ocean</item>
- <item>@string/wallpaper_gradient_orange</item>
- <item>@string/wallpaper_gradient_peach</item>
- <item>@string/wallpaper_gradient_plum</item>
- <item>@string/wallpaper_gradient_shine</item>
- </string-array>
-</resources>
\ No newline at end of file
diff --git a/app/src/main/res/values/bools.xml b/app/src/main/res/values/bools.xml
deleted file mode 100644
index 21d24c8..0000000
--- a/app/src/main/res/values/bools.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <bool name="isLight">true</bool>
-</resources>
\ No newline at end of file
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
deleted file mode 100644
index 3263e96..0000000
--- a/app/src/main/res/values/colors.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <color name="colorPrimary">#fefefe</color>
- <color name="colorPrimaryDark">#e0e0e0</color>
- <color name="colorAccent">#167c80</color>
-
- <color name="ic_launcher_background">#70AE98</color>
-
- <color name="apply_closeBg">#4f000000</color>
-</resources>
diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml
deleted file mode 100644
index 0bee454..0000000
--- a/app/src/main/res/values/dimens.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <dimen name="item_margin_vertical">8dp</dimen>
- <dimen name="item_margin_horizontal">4dp</dimen>
-
- <dimen name="main_list_margin_left">0dp</dimen>
-
- <dimen name="apply_margin_horizontal">0dp</dimen>
-</resources>
\ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
deleted file mode 100644
index 4c590b9..0000000
--- a/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
- <string name="app_name">Wallpapers</string>
-
- <string name="main_loading">Loading\u2026</string>
- <string name="main_wallpaper_pick">Your images</string>
- <string name="apply_both_action">Home & lock screen</string>
- <string name="apply_home_action">Home screen</string>
- <string name="apply_lock_action">Lock screen</string>
-
- <string name="apply_success">Wallpaper applied</string>
- <string name="apply_failure">Unable to set this wallpaper</string>
-
- <string name="apply_close">Close</string>
-
- <!-- Mono wallpaper names-->
- <eat-comment />
-
- <string name="wallpaper_mono_black">Black</string>
- <string name="wallpaper_mono_blue">Blue</string>
- <string name="wallpaper_mono_brown">Brown</string>
- <string name="wallpaper_mono_cyan">Cyan</string>
- <string name="wallpaper_mono_green">Green</string>
- <string name="wallpaper_mono_orange">Orange</string>
- <string name="wallpaper_mono_pink">Pink</string>
- <string name="wallpaper_mono_purple">Purple</string>
- <string name="wallpaper_mono_red">Red</string>
- <string name="wallpaper_mono_teal">Teal</string>
- <string name="wallpaper_mono_white">White</string>
- <string name="wallpaper_mono_yellow">Yellow</string>
-
- <!-- Built-in wallpaper names -->
- <eat-comment />
-
- <string translatable="false" name="wallpaper_built_in_ink">Ink</string>
- <string translatable="false" name="wallpaper_built_in_orderofchaos">Order of chaos</string>
- <string translatable="false" name="wallpaper_built_in_spacestory">Space story</string>
- <string translatable="false" name="wallpaper_built_in_ice">Ice</string>
- <string translatable="false" name="wallpaper_built_in_nebula">Nebula</string>
- <string translatable="false" name="wallpaper_built_in_night">Still night</string>
- <string translatable="false" name="wallpaper_built_in_sea">Sea</string>
- <string translatable="false" name="wallpaper_built_in_riseup">Rise up</string>
- <string translatable="false" name="wallpaper_built_in_dayroad">Day road</string>
- <string translatable="false" name="wallpaper_built_in_nightroad">Night road</string>
- <string translatable="false" name="wallpaper_built_in_system">Default</string>
-
- <!-- Gradient wallpaper names -->
- <eat-comment />
-
- <string name="wallpaper_gradient_iron">Iron</string>
- <string name="wallpaper_gradient_leaf">Leaf</string>
- <string name="wallpaper_gradient_lemon">Lemon</string>
- <string name="wallpaper_gradient_neon">Neon</string>
- <string name="wallpaper_gradient_ocean">Ocean</string>
- <string name="wallpaper_gradient_orange">Orange</string>
- <string name="wallpaper_gradient_peach">Peach</string>
- <string name="wallpaper_gradient_plum">Plum</string>
- <string name="wallpaper_gradient_shine">Shine</string>
-</resources>
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
deleted file mode 100644
index af1bab4..0000000
--- a/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
- <item name="colorPrimary">@color/colorPrimary</item>
- <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
- <item name="colorAccent">@color/colorAccent</item>
- <item name="isLightTheme">@bool/isLight</item>
- <item name="android:windowContentTransitions">true</item>
- <item name="android:windowLightStatusBar">@bool/isLight</item>
- <item name="android:windowLightNavigationBar">@bool/isLight</item>
- </style>
-
- <style name="AppTheme.TranslucentNav">
- <item name="android:windowTranslucentNavigation">true</item>
- <item name="android:windowTranslucentStatus">false</item>
- </style>
-
- <style name="AppTheme.PrimaryNav">
- <item name="android:navigationBarDividerColor">@color/colorPrimary</item>
- <item name="android:navigationBarColor">@color/colorPrimary</item>
- </style>
-
- <style name="AppTheme.ApplyButton">
- <item name="android:layout_width">0dp</item>
- <item name="android:layout_height">match_parent</item>
- <item name="android:layout_weight">1</item>
- <item name="android:alpha">0.8</item>
- <item name="android:ellipsize">end</item>
- <item name="android:background">?android:attr/selectableItemBackgroundBorderless</item>
- <item name="android:drawablePadding">8dp</item>
- <item name="android:maxLines">2</item>
- <item name="android:textAlignment">center</item>
- <item name="android:textSize">16sp</item>
- </style>
-
- <style name="AppTheme.AppTitle" parent="@style/TextAppearance.Widget.AppCompat.Toolbar.Title">
- <item name="android:textSize">48sp</item>
- </style>
-</resources>
diff --git a/app/src/main/res/values/wallpapers_mono.xml b/app/src/main/res/values/wallpapers_mono.xml
deleted file mode 100644
index f9b0afa..0000000
--- a/app/src/main/res/values/wallpapers_mono.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <color name="wallpaper_color_black">#000000</color>
- <color name="wallpaper_color_blue">#84B4C8</color>
- <color name="wallpaper_color_brown">#DFC7C1</color>
- <color name="wallpaper_color_cyan">#97F2F3</color>
- <color name="wallpaper_color_green">#70AE98</color>
- <color name="wallpaper_color_orange">#E08963</color>
- <color name="wallpaper_color_pink">#F6A7C1</color>
- <color name="wallpaper_color_purple">#9C8ADE</color>
- <color name="wallpaper_color_red">#E58B88</color>
- <color name="wallpaper_color_teal">#619196</color>
- <color name="wallpaper_color_white">#F0F1F2</color>
- <color name="wallpaper_color_yellow">#ECBE7A</color>
-</resources>
diff --git a/app/src/main/res/xml/provider_paths.xml b/app/src/main/res/xml/provider_paths.xml
deleted file mode 100644
index b338da6..0000000
--- a/app/src/main/res/xml/provider_paths.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<paths>
- <external-path
- name="external_files"
- path="." />
-</paths>
diff --git a/app/src/main/res_1080p/full/values/wallpapers_built_in.xml b/app/src/main/res_1080p/full/values/wallpapers_built_in.xml
deleted file mode 100644
index 9563daa..0000000
--- a/app/src/main/res_1080p/full/values/wallpapers_built_in.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <array name="wallpaper_built_in_drawables">
- <item>@drawable/abstract_ink</item>
- <item>@drawable/abstract_orderofchaos</item>
- <item>@drawable/abstract_spacestory</item>
- <item>@drawable/nature_ice</item>
- <item>@drawable/nature_nebula</item>
- <item>@drawable/nature_night</item>
- <item>@drawable/nature_sea</item>
- <item>@drawable/space_riseup</item>
- <item>@drawable/urban_dayroad</item>
- <item>@drawable/urban_nightroad</item>
- </array>
-
- <string-array name="wallpaper_built_in_names">
- <item>@string/wallpaper_built_in_ink</item>
- <item>@string/wallpaper_built_in_orderofchaos</item>
- <item>@string/wallpaper_built_in_spacestory</item>
- <item>@string/wallpaper_built_in_ice</item>
- <item>@string/wallpaper_built_in_nebula</item>
- <item>@string/wallpaper_built_in_night</item>
- <item>@string/wallpaper_built_in_sea</item>
- <item>@string/wallpaper_built_in_riseup</item>
- <item>@string/wallpaper_built_in_dayroad</item>
- <item>@string/wallpaper_built_in_nightroad</item>
- </string-array>
-</resources>
diff --git a/app/src/main/res_1080p/small/values/wallpapers_built_in.xml b/app/src/main/res_1080p/small/values/wallpapers_built_in.xml
deleted file mode 100644
index f3d83cf..0000000
--- a/app/src/main/res_1080p/small/values/wallpapers_built_in.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <array name="wallpaper_built_in_drawables">
- <item>@drawable/abstract_orderofchaos</item>
- <item>@drawable/nature_ice</item>
- <item>@drawable/nature_nebula</item>
- <item>@drawable/nature_night</item>
- <item>@drawable/urban_dayroad</item>
- </array>
-
- <string-array name="wallpaper_built_in_names">
- <item>@string/wallpaper_built_in_orderofchaos</item>
- <item>@string/wallpaper_built_in_ice</item>
- <item>@string/wallpaper_built_in_nebula</item>
- <item>@string/wallpaper_built_in_night</item>
- <item>@string/wallpaper_built_in_sea</item>
- <item>@string/wallpaper_built_in_dayroad</item>
- </string-array>
-</resources>
diff --git a/app/src/main/res_1440p/full/values/wallpapers_built_in.xml b/app/src/main/res_1440p/full/values/wallpapers_built_in.xml
deleted file mode 100644
index 9563daa..0000000
--- a/app/src/main/res_1440p/full/values/wallpapers_built_in.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <array name="wallpaper_built_in_drawables">
- <item>@drawable/abstract_ink</item>
- <item>@drawable/abstract_orderofchaos</item>
- <item>@drawable/abstract_spacestory</item>
- <item>@drawable/nature_ice</item>
- <item>@drawable/nature_nebula</item>
- <item>@drawable/nature_night</item>
- <item>@drawable/nature_sea</item>
- <item>@drawable/space_riseup</item>
- <item>@drawable/urban_dayroad</item>
- <item>@drawable/urban_nightroad</item>
- </array>
-
- <string-array name="wallpaper_built_in_names">
- <item>@string/wallpaper_built_in_ink</item>
- <item>@string/wallpaper_built_in_orderofchaos</item>
- <item>@string/wallpaper_built_in_spacestory</item>
- <item>@string/wallpaper_built_in_ice</item>
- <item>@string/wallpaper_built_in_nebula</item>
- <item>@string/wallpaper_built_in_night</item>
- <item>@string/wallpaper_built_in_sea</item>
- <item>@string/wallpaper_built_in_riseup</item>
- <item>@string/wallpaper_built_in_dayroad</item>
- <item>@string/wallpaper_built_in_nightroad</item>
- </string-array>
-</resources>
diff --git a/app/src/main/res_1440p/small/values/wallpapers_built_in.xml b/app/src/main/res_1440p/small/values/wallpapers_built_in.xml
deleted file mode 100644
index f3d83cf..0000000
--- a/app/src/main/res_1440p/small/values/wallpapers_built_in.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-<!--
- Copyright (C) 2019 The LineageOS Project
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
-<resources>
-
- <array name="wallpaper_built_in_drawables">
- <item>@drawable/abstract_orderofchaos</item>
- <item>@drawable/nature_ice</item>
- <item>@drawable/nature_nebula</item>
- <item>@drawable/nature_night</item>
- <item>@drawable/urban_dayroad</item>
- </array>
-
- <string-array name="wallpaper_built_in_names">
- <item>@string/wallpaper_built_in_orderofchaos</item>
- <item>@string/wallpaper_built_in_ice</item>
- <item>@string/wallpaper_built_in_nebula</item>
- <item>@string/wallpaper_built_in_night</item>
- <item>@string/wallpaper_built_in_sea</item>
- <item>@string/wallpaper_built_in_dayroad</item>
- </string-array>
-</resources>
diff --git a/build.gradle b/build.gradle
deleted file mode 100644
index 6df5061..0000000
--- a/build.gradle
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
-buildscript {
- repositories {
- google()
- jcenter()
-
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.4.0'
-
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
-}
-
-allprojects {
- repositories {
- google()
- jcenter()
-
- }
-}
-
-task clean(type: Delete) {
- delete rootProject.buildDir
-}
diff --git a/gradle.properties b/gradle.properties
deleted file mode 100644
index a48672d..0000000
--- a/gradle.properties
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# Copyright (C) 2019 The LineageOS Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-# Project-wide Gradle settings.
-# IDE (e.g. Android Studio) users:
-# Gradle settings configured through the IDE *will override*
-# any settings specified in this file.
-# For more details on how to configure your build environment visit
-# http://www.gradle.org/docs/current/userguide/build_environment.html
-# Specifies the JVM arguments used for the daemon process.
-# The setting is particularly useful for tweaking memory settings.
-org.gradle.jvmargs=-Xmx1536m
-# When configured, Gradle will run in incubating parallel mode.
-# This option should only be used with decoupled projects. More details, visit
-# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
-# org.gradle.parallel=true
-# AndroidX package structure to make it clearer which packages are bundled with the
-# Android operating system, and which are packaged with your app's APK
-# https://developer.android.com/topic/libraries/support-library/androidx-rn
-android.useAndroidX=true
-# Automatically convert third-party libraries to use AndroidX
-android.enableJetifier=true
-
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index f6b961f..0000000
--- a/gradle/wrapper/gradle-wrapper.jar
+++ /dev/null
Binary files differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 7adbc5b..0000000
--- a/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# Copyright (C) 2019 The LineageOS Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-#Mon Apr 22 11:46:51 CEST 2019
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
diff --git a/gradlew b/gradlew
deleted file mode 100755
index cccdd3d..0000000
--- a/gradlew
+++ /dev/null
@@ -1,172 +0,0 @@
-#!/usr/bin/env sh
-
-##############################################################################
-##
-## Gradle start up script for UN*X
-##
-##############################################################################
-
-# Attempt to set APP_HOME
-# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
-done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
-
-APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS=""
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
-
-warn () {
- echo "$*"
-}
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-}
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
-esac
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD="java"
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
-fi
-
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
- fi
- i=$((i+1))
- done
- case $i in
- (0) set -- ;;
- (1) set -- "$args0" ;;
- (2) set -- "$args0" "$args1" ;;
- (3) set -- "$args0" "$args1" "$args2" ;;
- (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
-fi
-
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=$(save "$@")
-
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
-
-# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
-if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
- cd "$(dirname "$0")"
-fi
-
-exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
deleted file mode 100644
index e95643d..0000000
--- a/gradlew.bat
+++ /dev/null
@@ -1,84 +0,0 @@
-@if "%DEBUG%" == "" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS=
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto init
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto init
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:init
-@rem Get command-line arguments, handling Windows variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
-
-:end
-@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/app/src/main/res/values/config.xml b/res/values/strings.xml
similarity index 91%
rename from app/src/main/res/values/config.xml
rename to res/values/strings.xml
index 657f6d4..05dad2a 100644
--- a/app/src/main/res/values/config.xml
+++ b/res/values/strings.xml
@@ -14,5 +14,6 @@
limitations under the License.
-->
<resources>
- <integer name="main_list_columns">2</integer>
+
+ <string name="app_name">Wallpapers</string>
</resources>
diff --git a/app/src/main/res_1080p/common/drawable-nodpi/abstract_orderofchaos.jpg b/res_1080p/common/drawable-nodpi/abstract_orderofchaos.jpg
similarity index 100%
rename from app/src/main/res_1080p/common/drawable-nodpi/abstract_orderofchaos.jpg
rename to res_1080p/common/drawable-nodpi/abstract_orderofchaos.jpg
Binary files differ
diff --git a/res_1080p/common/drawable-nodpi/abstract_orderofchaos_small.jpg b/res_1080p/common/drawable-nodpi/abstract_orderofchaos_small.jpg
new file mode 100644
index 0000000..d48fb68
--- /dev/null
+++ b/res_1080p/common/drawable-nodpi/abstract_orderofchaos_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/common/drawable-nodpi/nature_ice.jpg b/res_1080p/common/drawable-nodpi/nature_ice.jpg
similarity index 100%
rename from app/src/main/res_1080p/common/drawable-nodpi/nature_ice.jpg
rename to res_1080p/common/drawable-nodpi/nature_ice.jpg
Binary files differ
diff --git a/res_1080p/common/drawable-nodpi/nature_ice_small.jpg b/res_1080p/common/drawable-nodpi/nature_ice_small.jpg
new file mode 100644
index 0000000..781f988
--- /dev/null
+++ b/res_1080p/common/drawable-nodpi/nature_ice_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/common/drawable-nodpi/nature_nebula.jpg b/res_1080p/common/drawable-nodpi/nature_nebula.jpg
similarity index 100%
rename from app/src/main/res_1080p/common/drawable-nodpi/nature_nebula.jpg
rename to res_1080p/common/drawable-nodpi/nature_nebula.jpg
Binary files differ
diff --git a/res_1080p/common/drawable-nodpi/nature_nebula_small.jpg b/res_1080p/common/drawable-nodpi/nature_nebula_small.jpg
new file mode 100644
index 0000000..6a9f884
--- /dev/null
+++ b/res_1080p/common/drawable-nodpi/nature_nebula_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/common/drawable-nodpi/nature_night.jpg b/res_1080p/common/drawable-nodpi/nature_night.jpg
similarity index 100%
rename from app/src/main/res_1080p/common/drawable-nodpi/nature_night.jpg
rename to res_1080p/common/drawable-nodpi/nature_night.jpg
Binary files differ
diff --git a/res_1080p/common/drawable-nodpi/nature_night_small.jpg b/res_1080p/common/drawable-nodpi/nature_night_small.jpg
new file mode 100644
index 0000000..2374adc
--- /dev/null
+++ b/res_1080p/common/drawable-nodpi/nature_night_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/common/drawable-nodpi/urban_dayroad.jpg b/res_1080p/common/drawable-nodpi/urban_dayroad.jpg
similarity index 100%
rename from app/src/main/res_1080p/common/drawable-nodpi/urban_dayroad.jpg
rename to res_1080p/common/drawable-nodpi/urban_dayroad.jpg
Binary files differ
diff --git a/res_1080p/common/drawable-nodpi/urban_dayroad_small.jpg b/res_1080p/common/drawable-nodpi/urban_dayroad_small.jpg
new file mode 100644
index 0000000..610d117
--- /dev/null
+++ b/res_1080p/common/drawable-nodpi/urban_dayroad_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/full/drawable-nodpi/abstract_ink.jpg b/res_1080p/full/drawable-nodpi/abstract_ink.jpg
similarity index 100%
rename from app/src/main/res_1080p/full/drawable-nodpi/abstract_ink.jpg
rename to res_1080p/full/drawable-nodpi/abstract_ink.jpg
Binary files differ
diff --git a/res_1080p/full/drawable-nodpi/abstract_ink_small.jpg b/res_1080p/full/drawable-nodpi/abstract_ink_small.jpg
new file mode 100644
index 0000000..beec393
--- /dev/null
+++ b/res_1080p/full/drawable-nodpi/abstract_ink_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/full/drawable-nodpi/abstract_spacestory.jpg b/res_1080p/full/drawable-nodpi/abstract_spacestory.jpg
similarity index 100%
rename from app/src/main/res_1080p/full/drawable-nodpi/abstract_spacestory.jpg
rename to res_1080p/full/drawable-nodpi/abstract_spacestory.jpg
Binary files differ
diff --git a/res_1080p/full/drawable-nodpi/abstract_spacestory_small.jpg b/res_1080p/full/drawable-nodpi/abstract_spacestory_small.jpg
new file mode 100644
index 0000000..94c60ef
--- /dev/null
+++ b/res_1080p/full/drawable-nodpi/abstract_spacestory_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/full/drawable-nodpi/nature_sea.jpg b/res_1080p/full/drawable-nodpi/nature_sea.jpg
similarity index 100%
rename from app/src/main/res_1080p/full/drawable-nodpi/nature_sea.jpg
rename to res_1080p/full/drawable-nodpi/nature_sea.jpg
Binary files differ
diff --git a/res_1080p/full/drawable-nodpi/nature_sea_small.jpg b/res_1080p/full/drawable-nodpi/nature_sea_small.jpg
new file mode 100644
index 0000000..b965499
--- /dev/null
+++ b/res_1080p/full/drawable-nodpi/nature_sea_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/full/drawable-nodpi/space_riseup.jpg b/res_1080p/full/drawable-nodpi/space_riseup.jpg
similarity index 100%
rename from app/src/main/res_1080p/full/drawable-nodpi/space_riseup.jpg
rename to res_1080p/full/drawable-nodpi/space_riseup.jpg
Binary files differ
diff --git a/res_1080p/full/drawable-nodpi/space_riseup_small.jpg b/res_1080p/full/drawable-nodpi/space_riseup_small.jpg
new file mode 100644
index 0000000..cb409a3
--- /dev/null
+++ b/res_1080p/full/drawable-nodpi/space_riseup_small.jpg
Binary files differ
diff --git a/app/src/main/res_1080p/full/drawable-nodpi/urban_nightroad.jpg b/res_1080p/full/drawable-nodpi/urban_nightroad.jpg
similarity index 100%
rename from app/src/main/res_1080p/full/drawable-nodpi/urban_nightroad.jpg
rename to res_1080p/full/drawable-nodpi/urban_nightroad.jpg
Binary files differ
diff --git a/res_1080p/full/drawable-nodpi/urban_nightroad_small.jpg b/res_1080p/full/drawable-nodpi/urban_nightroad_small.jpg
new file mode 100644
index 0000000..ad68b3c
--- /dev/null
+++ b/res_1080p/full/drawable-nodpi/urban_nightroad_small.jpg
Binary files differ
diff --git a/res_1080p/full/values/arrays.xml b/res_1080p/full/values/arrays.xml
new file mode 100644
index 0000000..c2e4eb0
--- /dev/null
+++ b/res_1080p/full/values/arrays.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2020 The LineageOS Project
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <array name="partner_wallpapers" translatable="false">
+ <item>abstract_ink</item>
+ <item>abstract_orderofchaos</item>
+ <item>abstract_spacestory</item>
+ <item>nature_ice</item>
+ <item>nature_nebula</item>
+ <item>nature_night</item>
+ <item>nature_sea</item>
+ <item>space_riseup</item>
+ <item>urban_dayroad</item>
+ <item>urban_nightroad</item>
+ </array>
+</resources>
diff --git a/res_1080p/small/values/arrays.xml b/res_1080p/small/values/arrays.xml
new file mode 100644
index 0000000..3110096
--- /dev/null
+++ b/res_1080p/small/values/arrays.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2020 The LineageOS Project
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <array name="partner_wallpapers" translatable="false">
+ <item>abstract_orderofchaos</item>
+ <item>nature_ice</item>
+ <item>nature_nebula</item>
+ <item>nature_night</item>
+ <item>urban_dayroad</item>
+ </array>
+</resources>
diff --git a/app/src/main/res_1440p/common/drawable-nodpi/abstract_orderofchaos.jpg b/res_1440p/common/drawable-nodpi/abstract_orderofchaos.jpg
similarity index 100%
rename from app/src/main/res_1440p/common/drawable-nodpi/abstract_orderofchaos.jpg
rename to res_1440p/common/drawable-nodpi/abstract_orderofchaos.jpg
Binary files differ
diff --git a/res_1440p/common/drawable-nodpi/abstract_orderofchaos_small.jpg b/res_1440p/common/drawable-nodpi/abstract_orderofchaos_small.jpg
new file mode 100644
index 0000000..3ff1856
--- /dev/null
+++ b/res_1440p/common/drawable-nodpi/abstract_orderofchaos_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/common/drawable-nodpi/nature_ice.jpg b/res_1440p/common/drawable-nodpi/nature_ice.jpg
similarity index 100%
rename from app/src/main/res_1440p/common/drawable-nodpi/nature_ice.jpg
rename to res_1440p/common/drawable-nodpi/nature_ice.jpg
Binary files differ
diff --git a/res_1440p/common/drawable-nodpi/nature_ice_small.jpg b/res_1440p/common/drawable-nodpi/nature_ice_small.jpg
new file mode 100644
index 0000000..b2b4d85
--- /dev/null
+++ b/res_1440p/common/drawable-nodpi/nature_ice_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/common/drawable-nodpi/nature_nebula.jpg b/res_1440p/common/drawable-nodpi/nature_nebula.jpg
similarity index 100%
rename from app/src/main/res_1440p/common/drawable-nodpi/nature_nebula.jpg
rename to res_1440p/common/drawable-nodpi/nature_nebula.jpg
Binary files differ
diff --git a/res_1440p/common/drawable-nodpi/nature_nebula_small.jpg b/res_1440p/common/drawable-nodpi/nature_nebula_small.jpg
new file mode 100644
index 0000000..2ca64dc
--- /dev/null
+++ b/res_1440p/common/drawable-nodpi/nature_nebula_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/common/drawable-nodpi/nature_night.jpg b/res_1440p/common/drawable-nodpi/nature_night.jpg
similarity index 100%
rename from app/src/main/res_1440p/common/drawable-nodpi/nature_night.jpg
rename to res_1440p/common/drawable-nodpi/nature_night.jpg
Binary files differ
diff --git a/res_1440p/common/drawable-nodpi/nature_night_small.jpg b/res_1440p/common/drawable-nodpi/nature_night_small.jpg
new file mode 100644
index 0000000..7dce775
--- /dev/null
+++ b/res_1440p/common/drawable-nodpi/nature_night_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/common/drawable-nodpi/urban_dayroad.jpg b/res_1440p/common/drawable-nodpi/urban_dayroad.jpg
similarity index 100%
rename from app/src/main/res_1440p/common/drawable-nodpi/urban_dayroad.jpg
rename to res_1440p/common/drawable-nodpi/urban_dayroad.jpg
Binary files differ
diff --git a/res_1440p/common/drawable-nodpi/urban_dayroad_small.jpg b/res_1440p/common/drawable-nodpi/urban_dayroad_small.jpg
new file mode 100644
index 0000000..4bd82cf
--- /dev/null
+++ b/res_1440p/common/drawable-nodpi/urban_dayroad_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/full/drawable-nodpi/abstract_ink.jpg b/res_1440p/full/drawable-nodpi/abstract_ink.jpg
similarity index 100%
rename from app/src/main/res_1440p/full/drawable-nodpi/abstract_ink.jpg
rename to res_1440p/full/drawable-nodpi/abstract_ink.jpg
Binary files differ
diff --git a/res_1440p/full/drawable-nodpi/abstract_ink_small.jpg b/res_1440p/full/drawable-nodpi/abstract_ink_small.jpg
new file mode 100644
index 0000000..47b68b6
--- /dev/null
+++ b/res_1440p/full/drawable-nodpi/abstract_ink_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/full/drawable-nodpi/abstract_spacestory.jpg b/res_1440p/full/drawable-nodpi/abstract_spacestory.jpg
similarity index 100%
rename from app/src/main/res_1440p/full/drawable-nodpi/abstract_spacestory.jpg
rename to res_1440p/full/drawable-nodpi/abstract_spacestory.jpg
Binary files differ
diff --git a/res_1440p/full/drawable-nodpi/abstract_spacestory_small.jpg b/res_1440p/full/drawable-nodpi/abstract_spacestory_small.jpg
new file mode 100644
index 0000000..3751314
--- /dev/null
+++ b/res_1440p/full/drawable-nodpi/abstract_spacestory_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/full/drawable-nodpi/nature_sea.jpg b/res_1440p/full/drawable-nodpi/nature_sea.jpg
similarity index 100%
rename from app/src/main/res_1440p/full/drawable-nodpi/nature_sea.jpg
rename to res_1440p/full/drawable-nodpi/nature_sea.jpg
Binary files differ
diff --git a/res_1440p/full/drawable-nodpi/nature_sea_small.jpg b/res_1440p/full/drawable-nodpi/nature_sea_small.jpg
new file mode 100644
index 0000000..9daa9c5
--- /dev/null
+++ b/res_1440p/full/drawable-nodpi/nature_sea_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/full/drawable-nodpi/space_riseup.jpg b/res_1440p/full/drawable-nodpi/space_riseup.jpg
similarity index 100%
rename from app/src/main/res_1440p/full/drawable-nodpi/space_riseup.jpg
rename to res_1440p/full/drawable-nodpi/space_riseup.jpg
Binary files differ
diff --git a/res_1440p/full/drawable-nodpi/space_riseup_small.jpg b/res_1440p/full/drawable-nodpi/space_riseup_small.jpg
new file mode 100644
index 0000000..5929187
--- /dev/null
+++ b/res_1440p/full/drawable-nodpi/space_riseup_small.jpg
Binary files differ
diff --git a/app/src/main/res_1440p/full/drawable-nodpi/urban_nightroad.jpg b/res_1440p/full/drawable-nodpi/urban_nightroad.jpg
similarity index 100%
rename from app/src/main/res_1440p/full/drawable-nodpi/urban_nightroad.jpg
rename to res_1440p/full/drawable-nodpi/urban_nightroad.jpg
Binary files differ
diff --git a/res_1440p/full/drawable-nodpi/urban_nightroad_small.jpg b/res_1440p/full/drawable-nodpi/urban_nightroad_small.jpg
new file mode 100644
index 0000000..d1fd5a2
--- /dev/null
+++ b/res_1440p/full/drawable-nodpi/urban_nightroad_small.jpg
Binary files differ
diff --git a/res_1440p/full/values/arrays.xml b/res_1440p/full/values/arrays.xml
new file mode 100644
index 0000000..c2e4eb0
--- /dev/null
+++ b/res_1440p/full/values/arrays.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2020 The LineageOS Project
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <array name="partner_wallpapers" translatable="false">
+ <item>abstract_ink</item>
+ <item>abstract_orderofchaos</item>
+ <item>abstract_spacestory</item>
+ <item>nature_ice</item>
+ <item>nature_nebula</item>
+ <item>nature_night</item>
+ <item>nature_sea</item>
+ <item>space_riseup</item>
+ <item>urban_dayroad</item>
+ <item>urban_nightroad</item>
+ </array>
+</resources>
diff --git a/res_1440p/small/values/arrays.xml b/res_1440p/small/values/arrays.xml
new file mode 100644
index 0000000..3110096
--- /dev/null
+++ b/res_1440p/small/values/arrays.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2020 The LineageOS Project
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
+ <array name="partner_wallpapers" translatable="false">
+ <item>abstract_orderofchaos</item>
+ <item>nature_ice</item>
+ <item>nature_nebula</item>
+ <item>nature_night</item>
+ <item>urban_dayroad</item>
+ </array>
+</resources>
diff --git a/settings.gradle b/settings.gradle
deleted file mode 100644
index 599df77..0000000
--- a/settings.gradle
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Copyright (C) 2019 The LineageOS Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-include ':app'