Wednesday, January 12, 2022

Configure Maven to use HTTPS

 Open the file $MAVEN_HOME/conf/settings.xml


And configure in the <mirrors>...</mirrors> Section

<mirror>
  <id>central-secure</id>
  <url>https://repo.maven.apache.org/maven2</url>
  <mirrorOf>central</mirrorOf>
</mirror>

Wednesday, April 17, 2019

Android - Renaming project

1. Copy Android Project directory

2. Rename the root folder

3. open the project in the IDE (Android Studio)

4. Refactors folders under app
   use change directory option
   There may be approval button like "do refactor" in the version control rea

5. change app name in res/values/strings.xml "app name"

6. Update build.gradle file with new applicationId

7. Install and Check