AR Draw V1.0.0(1)三星
This commit is contained in:
parent
3885be00f5
commit
e91ee55e71
BIN
app/ARDraw.jks
Normal file
BIN
app/ARDraw.jks
Normal file
Binary file not shown.
@ -4,15 +4,10 @@ import java.text.SimpleDateFormat
|
|||||||
plugins {
|
plugins {
|
||||||
id("com.android.application")
|
id("com.android.application")
|
||||||
id("org.jetbrains.kotlin.android")
|
id("org.jetbrains.kotlin.android")
|
||||||
// id("com.google.gms.google-services")
|
|
||||||
// id("com.google.firebase.crashlytics")
|
|
||||||
// id("applovin-quality-service")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//applovin {
|
|
||||||
// apiKey =
|
|
||||||
// "0pn_nPmNSunNT9Oq6nyqrUVTGfbFsZUoU47_B5ydJsLCvMPzZ8VdNFvemW1bfJfLlQ4WEgrD_fu3M4ep7hS9Ng"
|
|
||||||
//}
|
|
||||||
|
|
||||||
val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date())
|
val timestamp = SimpleDateFormat("MM_dd_HH_mm").format(Date())
|
||||||
android {
|
android {
|
||||||
@ -20,15 +15,15 @@ android {
|
|||||||
compileSdk = 34
|
compileSdk = 34
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
//com.draw.ar.drawsketch
|
//com.draw.ar.draw
|
||||||
applicationId = "com.draw.ar.drawsketch"
|
applicationId = "com.draw.ar.draw"
|
||||||
minSdk = 23
|
minSdk = 23
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 1
|
versionCode = 1
|
||||||
versionName = "1.0.0"
|
versionName = "1.0.0"
|
||||||
setProperty(
|
setProperty(
|
||||||
"archivesBaseName",
|
"archivesBaseName",
|
||||||
"AR Draw Sketch_V" + versionName + "(${versionCode})_$timestamp"
|
"AR Draw_V" + versionName + "(${versionCode})_$timestamp"
|
||||||
)
|
)
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
@ -78,14 +73,6 @@ dependencies {
|
|||||||
implementation("androidx.camera:camera-extensions:${camerax_version}")
|
implementation("androidx.camera:camera-extensions:${camerax_version}")
|
||||||
|
|
||||||
|
|
||||||
// implementation("com.applovin:applovin-sdk:+")
|
|
||||||
// implementation("com.applovin.mediation:vungle-adapter:+")
|
|
||||||
// implementation("com.applovin.mediation:mintegral-adapter:+")
|
|
||||||
// implementation("com.applovin.mediation:bytedance-adapter:+")
|
|
||||||
// implementation("com.applovin.mediation:unityads-adapter:+")
|
|
||||||
// implementation(platform("com.google.firebase:firebase-bom:33.1.1"))
|
|
||||||
// implementation("com.google.firebase:firebase-crashlytics")
|
|
||||||
// implementation("com.google.firebase:firebase-analytics")
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -65,8 +65,6 @@ public class HomeAdapter extends RecyclerView.Adapter<HomeAdapter.HomeVH> {
|
|||||||
if (listener != null) {
|
if (listener != null) {
|
||||||
listener.onClickItem(true,dir);
|
listener.onClickItem(true,dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,34 +7,40 @@
|
|||||||
android:background="@color/wel_color"
|
android:background="@color/wel_color"
|
||||||
tools:context=".ui.ALaucherActivity">
|
tools:context=".ui.ALaucherActivity">
|
||||||
|
|
||||||
<ImageView
|
<androidx.cardview.widget.CardView
|
||||||
android:layout_width="166dp"
|
|
||||||
android:layout_height="166dp"
|
|
||||||
android:layout_marginTop="186dp"
|
|
||||||
android:src="@mipmap/logo"
|
|
||||||
android:id="@+id/image"
|
android:id="@+id/image"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="186dp"
|
||||||
|
app:cardCornerRadius="10dp"
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="126dp"
|
||||||
|
android:layout_height="126dp"
|
||||||
|
android:src="@mipmap/logo" />
|
||||||
|
</androidx.cardview.widget.CardView>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:textSize="40sp"
|
android:layout_height="wrap_content"
|
||||||
app:layout_constraintTop_toBottomOf="@id/image"
|
android:layout_marginTop="20dp"
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
|
||||||
android:layout_marginTop="30dp"
|
|
||||||
android:text="@string/app_name"
|
android:text="@string/app_name"
|
||||||
android:textColor="@color/wel_text_color"
|
android:textColor="@color/wel_text_color"
|
||||||
android:layout_height="wrap_content"/>
|
android:textSize="20sp"
|
||||||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/image" />
|
||||||
|
|
||||||
<ProgressBar
|
<ProgressBar
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_height="wrap_content"
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
|
||||||
android:layout_marginBottom="60dp"
|
android:layout_marginBottom="60dp"
|
||||||
android:indeterminateTint="@color/wel_text_color"
|
android:indeterminateTint="@color/wel_text_color"
|
||||||
android:layout_height="wrap_content"/>
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintRight_toRightOf="parent" />
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
@ -3,6 +3,7 @@
|
|||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:paddingTop="33dp"
|
android:paddingTop="33dp"
|
||||||
|
android:background="@color/white"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 357 KiB After Width: | Height: | Size: 96 KiB |
@ -1,5 +1,5 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">AR Draw Sketch</string>
|
<string name="app_name">AR Draw</string>
|
||||||
|
|
||||||
<string name="see_all">See All</string>
|
<string name="see_all">See All</string>
|
||||||
<string name="tab_draw">Trace&Draw</string>
|
<string name="tab_draw">Trace&Draw</string>
|
||||||
|
|||||||
@ -2,11 +2,4 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id("com.android.application") version "8.1.0" apply false
|
id("com.android.application") version "8.1.0" apply false
|
||||||
id("org.jetbrains.kotlin.android") version "1.8.20" apply false
|
id("org.jetbrains.kotlin.android") version "1.8.20" apply false
|
||||||
id("com.google.gms.google-services") version "4.3.15" apply false
|
|
||||||
id ("com.google.firebase.crashlytics") version "2.9.2" apply false
|
|
||||||
}
|
}
|
||||||
//buildscript{
|
|
||||||
// dependencies{
|
|
||||||
// classpath("com.applovin.quality:AppLovinQualityServiceGradlePlugin:+")
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
@ -1,6 +1,15 @@
|
|||||||
app_name=AR Draw Sketch
|
#app_name=AR Draw Sketch
|
||||||
package_name=com.draw.ar.drawsketch
|
#package_name=com.draw.ar.drawsketch
|
||||||
keystoreFile=app/ARDrawSketch.jks
|
#keystoreFile=app/ARDrawSketch.jks
|
||||||
key_alias=ARDrawSketchkey0
|
#key_alias=ARDrawSketchkey0
|
||||||
key_store_password=ARDrawSketch
|
#key_store_password=ARDrawSketch
|
||||||
key_password=ARDrawSketch
|
#key_password=ARDrawSketch
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
app_name=AR Draw
|
||||||
|
package_name=com.draw.ar.draw
|
||||||
|
keystoreFile=app/ARDraw.jks
|
||||||
|
key_alias=ARDrawkey0
|
||||||
|
key_store_password=ARDraw
|
||||||
|
key_password=ARDraw
|
||||||
@ -3,8 +3,6 @@ pluginManagement {
|
|||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
|
|
||||||
// maven { url = uri("https://artifacts.applovin.com/android") }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dependencyResolutionManagement {
|
dependencyResolutionManagement {
|
||||||
@ -12,10 +10,6 @@ dependencyResolutionManagement {
|
|||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
||||||
// maven { url = uri("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea") }
|
|
||||||
// maven { url = uri("https://artifact.bytedance.com/repository/pangle") }
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user