create apk build in android studio
This commit is contained in:
parent
20f40a30d4
commit
6b2dd5e25d
30
android/.idea/jarRepositories.xml
Normal file
30
android/.idea/jarRepositories.xml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="RemoteRepositoriesConfiguration">
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Maven Central repository" />
|
||||||
|
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="jboss.community" />
|
||||||
|
<option name="name" value="JBoss Community repository" />
|
||||||
|
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="BintrayJCenter" />
|
||||||
|
<option name="name" value="BintrayJCenter" />
|
||||||
|
<option name="url" value="https://jcenter.bintray.com/" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="Google" />
|
||||||
|
<option name="name" value="Google" />
|
||||||
|
<option name="url" value="https://dl.google.com/dl/android/maven2/" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="MavenRepo" />
|
||||||
|
<option name="name" value="MavenRepo" />
|
||||||
|
<option name="url" value="https://repo.maven.apache.org/maven2/" />
|
||||||
|
</remote-repository>
|
||||||
|
</component>
|
||||||
|
</project>
|
6
android/.idea/jsonCatalog.xml
Normal file
6
android/.idea/jsonCatalog.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="JsonSchemaCatalogProjectConfiguration">
|
||||||
|
<preferRemoteSchemas>true</preferRemoteSchemas>
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
|
|||||||
android {
|
android {
|
||||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "io.ionic.starter"
|
applicationId "cocktail.shaker.app"
|
||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
versionCode 1
|
versionCode 1
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="io.ionic.starter">
|
package="cocktail.shaker.app">
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
|
||||||
android:name="io.ionic.starter.MainActivity"
|
android:name="cocktail.shaker.app.MainActivity"
|
||||||
android:label="@string/title_activity_main"
|
android:label="@string/title_activity_main"
|
||||||
android:theme="@style/AppTheme.NoActionBarLaunch"
|
android:theme="@style/AppTheme.NoActionBarLaunch"
|
||||||
android:launchMode="singleTask">
|
android:launchMode="singleTask">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package io.ionic.starter;
|
package cocktail.shaker.app;
|
||||||
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
|
@ -2,6 +2,6 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">cocktailShakerApp</string>
|
<string name="app_name">cocktailShakerApp</string>
|
||||||
<string name="title_activity_main">cocktailShakerApp</string>
|
<string name="title_activity_main">cocktailShakerApp</string>
|
||||||
<string name="package_name">io.ionic.starter</string>
|
<string name="package_name">cocktail.shaker.app</string>
|
||||||
<string name="custom_url_scheme">io.ionic.starter</string>
|
<string name="custom_url_scheme">cocktail.shaker.app</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
@ -7,7 +7,7 @@ buildscript {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.6.1'
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
||||||
classpath 'com.google.gms:google-services:4.3.3'
|
classpath 'com.google.gms:google-services:4.3.3'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
|
#Mon Jun 21 13:30:33 CEST 2021
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
|
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
BIN
android/signing/keystore
Normal file
BIN
android/signing/keystore
Normal file
Binary file not shown.
@ -2,7 +2,7 @@ ext {
|
|||||||
minSdkVersion = 21
|
minSdkVersion = 21
|
||||||
compileSdkVersion = 29
|
compileSdkVersion = 29
|
||||||
targetSdkVersion = 29
|
targetSdkVersion = 29
|
||||||
androidxAppCompatVersion = '1.1.0'
|
androidxAppCompatVersion = '1.3.0'
|
||||||
androidxCoreVersion = '1.2.0'
|
androidxCoreVersion = '1.2.0'
|
||||||
androidxMaterialVersion = '1.1.0-rc02'
|
androidxMaterialVersion = '1.1.0-rc02'
|
||||||
androidxBrowserVersion = '1.2.0'
|
androidxBrowserVersion = '1.2.0'
|
||||||
@ -10,8 +10,8 @@ ext {
|
|||||||
androidxExifInterfaceVersion = '1.2.0'
|
androidxExifInterfaceVersion = '1.2.0'
|
||||||
firebaseMessagingVersion = '20.1.2'
|
firebaseMessagingVersion = '20.1.2'
|
||||||
playServicesLocationVersion = '17.0.0'
|
playServicesLocationVersion = '17.0.0'
|
||||||
junitVersion = '4.12'
|
junitVersion = '4.13.2'
|
||||||
androidxJunitVersion = '1.1.1'
|
androidxJunitVersion = '1.1.2'
|
||||||
androidxEspressoCoreVersion = '3.2.0'
|
androidxEspressoCoreVersion = '3.3.0'
|
||||||
cordovaAndroidVersion = '7.0.0'
|
cordovaAndroidVersion = '7.0.0'
|
||||||
}
|
}
|
@ -1,13 +1,14 @@
|
|||||||
{
|
{
|
||||||
"appId": "io.ionic.starter",
|
"appId": "cocktail.shaker.app",
|
||||||
"appName": "cocktailShakerApp",
|
"appName": "cocktailShakerApp",
|
||||||
"bundledWebRuntime": false,
|
"bundledWebRuntime": false,
|
||||||
"npmClient": "yarn",
|
"npmClient": "yarn",
|
||||||
"webDir": "dist",
|
"webDir": "dist",
|
||||||
"plugins": {
|
"plugins": {
|
||||||
"SplashScreen": {
|
"SplashScreen": {
|
||||||
"launchShowDuration": 0
|
"launchShowDuration": 0
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"cordova": {}
|
"cordova": {},
|
||||||
|
"linuxAndroidStudioPath": "YourPathTo/android-studio/bin/studio.sh"
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user