V1.0.0 (1) com.paintings.tool
15
.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
*.iml
|
||||||
|
.gradle
|
||||||
|
/local.properties
|
||||||
|
/.idea/caches
|
||||||
|
/.idea/libraries
|
||||||
|
/.idea/modules.xml
|
||||||
|
/.idea/workspace.xml
|
||||||
|
/.idea/navEditor.xml
|
||||||
|
/.idea/assetWizardSettings.xml
|
||||||
|
.DS_Store
|
||||||
|
/build
|
||||||
|
/captures
|
||||||
|
.externalNativeBuild
|
||||||
|
.cxx
|
||||||
|
local.properties
|
||||||
1
app/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/build
|
||||||
BIN
app/PaintingsTool.jks
Normal file
73
app/build.gradle.kts
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
import java.util.Date
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
alias(libs.plugins.android.application)
|
||||||
|
alias(libs.plugins.jetbrains.kotlin.android)
|
||||||
|
}
|
||||||
|
val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date())
|
||||||
|
android {
|
||||||
|
namespace = "com.app.paintingstool"
|
||||||
|
compileSdk = 34
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
applicationId = "com.paintings.tool"
|
||||||
|
minSdk = 23
|
||||||
|
targetSdk = 34
|
||||||
|
versionCode = 1
|
||||||
|
versionName = "1.0.0"
|
||||||
|
setProperty(
|
||||||
|
"archivesBaseName",
|
||||||
|
"AR Drawing-Paintings Tool_V" + versionName + "(${versionCode})_$timestamp"
|
||||||
|
)
|
||||||
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
isMinifyEnabled = true
|
||||||
|
proguardFiles(
|
||||||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
|
"proguard-rules.pro"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
|
}
|
||||||
|
buildFeatures {
|
||||||
|
viewBinding = true
|
||||||
|
}
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "17"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
implementation(libs.appcompat)
|
||||||
|
implementation(libs.material)
|
||||||
|
implementation(libs.activity)
|
||||||
|
implementation(libs.constraintlayout)
|
||||||
|
implementation(libs.core.ktx)
|
||||||
|
testImplementation(libs.junit)
|
||||||
|
androidTestImplementation(libs.ext.junit)
|
||||||
|
androidTestImplementation(libs.espresso.core)
|
||||||
|
implementation ("androidx.room:room-runtime:2.4.0")
|
||||||
|
annotationProcessor ("androidx.room:room-compiler:2.4.0")
|
||||||
|
implementation("com.github.bumptech.glide:glide:4.16.0")
|
||||||
|
val camerax_version = "1.1.0-beta01"
|
||||||
|
//noinspection GradleDependency
|
||||||
|
implementation("androidx.camera:camera-core:${camerax_version}")
|
||||||
|
//noinspection GradleDependency
|
||||||
|
implementation("androidx.camera:camera-camera2:${camerax_version}")
|
||||||
|
//noinspection GradleDependency
|
||||||
|
implementation("androidx.camera:camera-lifecycle:${camerax_version}")
|
||||||
|
//noinspection GradleDependency
|
||||||
|
implementation("androidx.camera:camera-video:${camerax_version}")
|
||||||
|
//noinspection GradleDependency
|
||||||
|
implementation("androidx.camera:camera-view:${camerax_version}")
|
||||||
|
//noinspection GradleDependency
|
||||||
|
implementation("androidx.camera:camera-extensions:${camerax_version}")
|
||||||
|
}
|
||||||
158
app/proguard-rules.pro
vendored
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
# 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
|
||||||
|
-keepclassmembers class * implements android.os.Parcelable {
|
||||||
|
public static final android.os.Parcelable$Creator *;
|
||||||
|
}
|
||||||
|
|
||||||
|
-keepclassmembers class com.app.paintingstool.myuntils.Keys {
|
||||||
|
public static final java.lang.String tatab;
|
||||||
|
public static final int ababa;
|
||||||
|
}
|
||||||
|
|
||||||
|
-keepclassmembers class * {
|
||||||
|
@androidx.room.Query <methods>;
|
||||||
|
}
|
||||||
|
-keep class com.app.paintingstool.mydao.AppDatabase { *; }
|
||||||
|
#noinspection ShrinkerUnresolvedReference
|
||||||
|
#unity
|
||||||
|
-keep class com.google.android.gms.ads.** {public *;}
|
||||||
|
-keep class com.google.android.gms.appset.** { *; }
|
||||||
|
-keep class com.google.android.gms.tasks.** { *; }
|
||||||
|
#adapters
|
||||||
|
-keep class com.ironsource.adapters.** { *; }
|
||||||
|
#sdk
|
||||||
|
-dontwarn com.ironsource.**
|
||||||
|
-dontwarn com.ironsource.adapters.**
|
||||||
|
-keepclassmembers class com.ironsource.** { public *; }
|
||||||
|
-keep public class com.ironsource.**
|
||||||
|
-keep class com.ironsource.adapters.** { *;
|
||||||
|
}
|
||||||
|
#omid
|
||||||
|
-dontwarn com.iab.omid.**
|
||||||
|
-keep class com.iab.omid.** {*;}
|
||||||
|
#javascript
|
||||||
|
-keepattributes JavascriptInterface
|
||||||
|
-keepclassmembers class * { @android.webkit.JavascriptInterface <methods>; }
|
||||||
|
#For AmazonAps integration
|
||||||
|
-keep class com.amazon.device.ads.DtbThreadService {
|
||||||
|
static *;
|
||||||
|
}
|
||||||
|
-keep public interface com.amazon.device.ads** {*; }
|
||||||
|
#For AppLovin integration
|
||||||
|
-keepclassmembers class com.applovin.sdk.AppLovinSdk {
|
||||||
|
static *;
|
||||||
|
}
|
||||||
|
-keep public interface com.applovin.sdk** {*; }
|
||||||
|
-keep public interface com.applovin.adview** {*; }
|
||||||
|
-keep public interface com.applovin.mediation** {*; }
|
||||||
|
-keep public interface com.applovin.communicator** {*; }
|
||||||
|
#For Bytedance integration
|
||||||
|
-keep public interface com.bytedance.sdk.openadsdk** {*; }
|
||||||
|
#For Facebook integration
|
||||||
|
-keepclassmembers class com.facebook.ads.internal.AdSdkVersion {
|
||||||
|
static *;
|
||||||
|
}
|
||||||
|
-keepclassmembers class com.facebook.ads.internal.settings.AdSdkVersion {
|
||||||
|
static *;
|
||||||
|
}
|
||||||
|
-keepclassmembers class com.facebook.ads.BuildConfig {
|
||||||
|
static *;
|
||||||
|
}
|
||||||
|
-keep public interface com.facebook.ads** {*; }
|
||||||
|
#For Fairbid
|
||||||
|
-keep public interface com.fyber.fairbid.ads.interstitial** {*; }
|
||||||
|
-keep public interface com.fyber.fairbid.ads.rewarded** {*; }
|
||||||
|
-keep class com.fyber.offerwall.*
|
||||||
|
#For Fivead
|
||||||
|
-keep public interface com.five_corp.ad** {*; }
|
||||||
|
#For Fyber(Inneractive) integration
|
||||||
|
-keep public interface com.fyber.inneractive.sdk.external** {*; }
|
||||||
|
-keep public interface com.fyber.inneractive.sdk.activities** {*; }
|
||||||
|
-keep public interface com.fyber.inneractive.sdk.ui** {*; }
|
||||||
|
#For HyprMX integration
|
||||||
|
-keepclassmembers class com.hyprmx.android.sdk.utility.HyprMXProperties {
|
||||||
|
static *;
|
||||||
|
}
|
||||||
|
-keepclassmembers class com.hyprmx.android.BuildConfig {
|
||||||
|
static *;
|
||||||
|
}
|
||||||
|
-keep public interface com.hyprmx.android.sdk.activity** {*; }
|
||||||
|
-keep public interface com.hyprmx.android.sdk.graphics** {*; }
|
||||||
|
# For Inmobi integration
|
||||||
|
-keep class com.inmobi.*
|
||||||
|
-keep public interface com.inmobi.ads.listeners** {*; }
|
||||||
|
-keep public interface com.inmobi.ads.InMobiInterstitial** {*; }
|
||||||
|
-keep public interface com.inmobi.ads.InMobiBanner** {*; }
|
||||||
|
# For ironSource integration
|
||||||
|
-keep public interface com.ironsource.mediationsdk.sdk** {*; }
|
||||||
|
-keep public interface com.ironsource.mediationsdk.impressionData.ImpressionDataListener {*; }
|
||||||
|
#For Maio integration
|
||||||
|
-keep public interface jp.maio.sdk.android.MaioAdsListenerInterface {*; }
|
||||||
|
# For Mintergral integration
|
||||||
|
-keep public interface com.mbridge.msdk.out** {*; }
|
||||||
|
-keep public interface com.mbridge.msdk.videocommon.listener** {*; }
|
||||||
|
-keep public interface com.mbridge.msdk.interstitialvideo.out** {*; }
|
||||||
|
-keep public interface com.mintegral.msdk.out** {*; }
|
||||||
|
-keep public interface com.mintegral.msdk.videocommon.listener** {*; }
|
||||||
|
-keep public interface com.mintegral.msdk.interstitialvideo.out** {*; }
|
||||||
|
#For MyTarget integration
|
||||||
|
-keep class com.my.target.** {*;}
|
||||||
|
#For Ogury integration
|
||||||
|
-keep public interface io.presage.interstitial** {*; }
|
||||||
|
-keep public interface io.presage.interstitial.PresageInterstitialCallback {*; }
|
||||||
|
#For Pubnative integration
|
||||||
|
-keep public interface net.pubnative.lite.sdk.interstitial.HyBidInterstitialAd** {*; }
|
||||||
|
-keep public interface net.pubnative.lite.sdk.rewarded.HyBidRewardedAd** {*; }
|
||||||
|
-keep public interface net.pubnative.lite.sdk.views.HyBidAdView** {*; }
|
||||||
|
#For Smaato integration
|
||||||
|
-keep public interface com.smaato.sdk.interstitial** {*; }
|
||||||
|
-keep public interface com.smaato.sdk.video.vast** {*; }
|
||||||
|
-keep public interface com.smaato.sdk.banner.widget** {*; }
|
||||||
|
-keep public interface com.smaato.sdk.core.util** {*; }
|
||||||
|
# For Tapjoy integration
|
||||||
|
-keep public interface com.tapjoy.** {*; }
|
||||||
|
# For Tencent integration
|
||||||
|
-keep public interface com.qq.e.ads.interstitial2** {*; }
|
||||||
|
-keep public interface com.qq.e.ads.interstitial3** {*; }
|
||||||
|
-keep public interface com.qq.e.ads.rewardvideo** {*; }
|
||||||
|
-keep public interface com.qq.e.ads.rewardvideo2** {*; }
|
||||||
|
-keep public interface com.qq.e.ads.banner2** {*; }
|
||||||
|
-keep public interface com.qq.e.comm.adevent** {*; }
|
||||||
|
#For Verizon integration
|
||||||
|
-keepclassmembers class com.verizon.ads.edition.BuildConfig {
|
||||||
|
static *;
|
||||||
|
}
|
||||||
|
-keep public interface com.verizon.ads.interstitialplacement** {*; }
|
||||||
|
-keep public interface com.verizon.ads.inlineplacement** {*; }
|
||||||
|
-keep public interface com.verizon.ads.vastcontroller** {*; }
|
||||||
|
-keep public interface com.verizon.ads.webcontroller** {*; }
|
||||||
|
#For Vungle integration
|
||||||
|
-keep public interface com.vungle.warren.PlayAdCallback {*; }
|
||||||
|
-keep public interface com.vungle.warren.ui.contract** {*; }
|
||||||
|
-keep public interface com.vungle.warren.ui.view** {*; }
|
||||||
|
#For AndroidX
|
||||||
|
-keep class androidx.localbroadcastmanager.content.LocalBroadcastManager { *;}
|
||||||
|
-keep class androidx.recyclerview.widget.RecyclerView { *;}
|
||||||
|
-keep class androidx.recyclerview.widget.RecyclerView$OnScrollListener { *;}
|
||||||
|
#For Android
|
||||||
|
-keep class * extends android.app.Activity
|
||||||
|
#-----------------------------------------------------ironSource SDK
|
||||||
@ -0,0 +1,26 @@
|
|||||||
|
package com.app.paintingstool;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
|
||||||
|
import androidx.test.platform.app.InstrumentationRegistry;
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instrumented test, which will execute on an Android device.
|
||||||
|
*
|
||||||
|
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
|
||||||
|
*/
|
||||||
|
@RunWith(AndroidJUnit4.class)
|
||||||
|
public class ExampleInstrumentedTest {
|
||||||
|
@Test
|
||||||
|
public void useAppContext() {
|
||||||
|
// Context of the app under test.
|
||||||
|
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
|
||||||
|
assertEquals("com.app.paintingstool", appContext.getPackageName());
|
||||||
|
}
|
||||||
|
}
|
||||||
64
app/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
tools:ignore="SelectedPhotoAccess">
|
||||||
|
|
||||||
|
<uses-feature
|
||||||
|
android:name="android.hardware.camera"
|
||||||
|
android:required="false" />
|
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.CAMERA" />
|
||||||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.READ_EXTERNAL_STORAGE"
|
||||||
|
android:maxSdkVersion="32" />
|
||||||
|
<uses-permission
|
||||||
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||||
|
android:maxSdkVersion="32"
|
||||||
|
tools:ignore="ScopedStorage" />
|
||||||
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
||||||
|
|
||||||
|
<application
|
||||||
|
android:name=".myuntils.Keys"
|
||||||
|
android:allowBackup="true"
|
||||||
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
|
android:fullBackupContent="@xml/backup_rules"
|
||||||
|
android:icon="@mipmap/icon"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:roundIcon="@mipmap/icon"
|
||||||
|
android:supportsRtl="true"
|
||||||
|
android:theme="@style/Theme.PaintingsTool"
|
||||||
|
tools:targetApi="31">
|
||||||
|
<activity
|
||||||
|
android:name=".myact.MainActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".myact.LoveActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".myact.ImporImageActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".myact.PrivacyPolicyActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".myact.SettingActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".myact.CarmelActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".myact.PaintingActivity"
|
||||||
|
android:exported="false" />
|
||||||
|
<activity
|
||||||
|
android:name=".myact.LoginActivity"
|
||||||
|
android:exported="true">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
||||||
BIN
app/src/main/assets/png_Animals/1.jpg
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
app/src/main/assets/png_Animals/10.jpg
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
app/src/main/assets/png_Animals/11.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
app/src/main/assets/png_Animals/12.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
app/src/main/assets/png_Animals/13.jpg
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
app/src/main/assets/png_Animals/14.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
app/src/main/assets/png_Animals/15.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
app/src/main/assets/png_Animals/16.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/png_Animals/17.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
app/src/main/assets/png_Animals/18.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/png_Animals/19.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Animals/2.jpg
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
app/src/main/assets/png_Animals/20.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
app/src/main/assets/png_Animals/21.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
app/src/main/assets/png_Animals/22.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
app/src/main/assets/png_Animals/23.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Animals/24.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/png_Animals/25.jpg
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
BIN
app/src/main/assets/png_Animals/26.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
app/src/main/assets/png_Animals/27.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/png_Animals/28.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/png_Animals/29.jpg
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
app/src/main/assets/png_Animals/3.jpg
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
app/src/main/assets/png_Animals/30.jpg
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
app/src/main/assets/png_Animals/31.jpg
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
app/src/main/assets/png_Animals/4.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
app/src/main/assets/png_Animals/5.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/png_Animals/6.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Animals/7.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/png_Animals/8.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
app/src/main/assets/png_Animals/9.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/png_Birds/1.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
app/src/main/assets/png_Birds/10.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Birds/11.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/png_Birds/12.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/png_Birds/13.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/png_Birds/14.jpg
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
app/src/main/assets/png_Birds/15.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/png_Birds/16.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/png_Birds/17.jpg
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
app/src/main/assets/png_Birds/18.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/png_Birds/19.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Birds/2.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
app/src/main/assets/png_Birds/3.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/png_Birds/4.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/png_Birds/5.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
app/src/main/assets/png_Birds/6.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
app/src/main/assets/png_Birds/7.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/png_Birds/8.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/png_Birds/9.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/png_Butterfly/1.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
app/src/main/assets/png_Butterfly/10.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/png_Butterfly/11.jpg
Normal file
|
After Width: | Height: | Size: 46 KiB |
BIN
app/src/main/assets/png_Butterfly/12.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/png_Butterfly/13.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/png_Butterfly/14.jpg
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
app/src/main/assets/png_Butterfly/15.jpg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
app/src/main/assets/png_Butterfly/16.jpg
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
app/src/main/assets/png_Butterfly/17.jpg
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
app/src/main/assets/png_Butterfly/18.jpg
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
app/src/main/assets/png_Butterfly/19.jpg
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
app/src/main/assets/png_Butterfly/2.jpg
Normal file
|
After Width: | Height: | Size: 53 KiB |
BIN
app/src/main/assets/png_Butterfly/20.jpg
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
app/src/main/assets/png_Butterfly/21.jpg
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
app/src/main/assets/png_Butterfly/3.jpg
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
app/src/main/assets/png_Butterfly/4.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/png_Butterfly/5.jpg
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
app/src/main/assets/png_Butterfly/6.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/png_Butterfly/7.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
app/src/main/assets/png_Butterfly/8.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Butterfly/9.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
app/src/main/assets/png_Cafe/1.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
app/src/main/assets/png_Cafe/10.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Cafe/11.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/png_Cafe/12.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
app/src/main/assets/png_Cafe/13.jpg
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
app/src/main/assets/png_Cafe/14.jpg
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
app/src/main/assets/png_Cafe/15.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/png_Cafe/16.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
app/src/main/assets/png_Cafe/17.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
app/src/main/assets/png_Cafe/18.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Cafe/19.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
app/src/main/assets/png_Cafe/2.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Cafe/20.jpg
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
app/src/main/assets/png_Cafe/21.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
app/src/main/assets/png_Cafe/22.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
app/src/main/assets/png_Cafe/23.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/png_Cafe/24.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
app/src/main/assets/png_Cafe/25.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
app/src/main/assets/png_Cafe/26.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
app/src/main/assets/png_Cafe/27.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
app/src/main/assets/png_Cafe/28.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
app/src/main/assets/png_Cafe/29.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |