I want to create various APK of my android project, with different SplashScreen/icon versions for each APK.
e.g :
APK1 : SplashScreen = @drawable/splashscreen1
IconLauncher = android:icon="@drawable/icone_launcher1"
APK2 : SplashScreen = @drawable/splashscreen2
IconLauncher = android:icon="@drawable/icone_launcher2"
Is there a "practical" way to do this ? I prefer not to copy/paste folders of my code so I can keep my code from redundancy, and when I want to make improvements of one APK, I want those improvements to appear on the others.
Any clue ? Maybe some kind of script that will duplicate my code in different folders and only change the AndroidManifest.xml containing the style of my launcher activity (defining the splashcreen) and the launcher icon also ?
Thanks in advance !