5236AndroidVoiceControlGame


Embed Unity in Android
export the project as Gradle https://medium.com/@davidbeloosesky/embedded-unity-within-android-app-7061f4f473a
do not change anything after export
modify the menifest.xml to include other activities
resovele dependency by checking the dependency tree
copy other activity.java to main, and add layout, strings ,color and style in res
add google-service at the root of the project folder
fix build.gradle of Firebase


add firebase SDK
Project-level build.gradle (/build.gradle):


buildscript {
dependencies {
// Add this line
classpath 'com.google.gms:google-services:4.0.1'
}
}
App-level build.gradle (//build.gradle):


dependencies {
// Add this line
implementation 'com.google.firebase:firebase-core:16.0.1'
}


// Add to the bottom of the file
apply plugin: 'com.google.gms.google-services'
Includes Analytics by default
Finally, press "Sync now" in the bar that appears in the IDE:


References
[1] Android Open Source Project, Android, http://developers.android.com
[2] Firebase, https://firebase.google.com/
[3] Pusheen the Cat, http://pusheen.com/