Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I put my custom template in Android Studio 4.1

In elder version of Android studio, I put it in ../plugins/android/lib/templates/other folder. But when I update to version 4.1, my folder is cleared. I've tried initializing a new one but it didn't work.

like image 789
Awm4n Avatar asked Oct 16 '20 04:10

Awm4n


1 Answers

Android Studio 4.1 changed configuration directory:

Windows Syntax: %APPDATA%\Google<product>

Example: C:\Users\YourUserName\AppData\Roaming\Google\AndroidStudio4.1

macOS Syntax: ~/Library/Application Support/Google/

Example: ~/Library/Application Support/Google/AndroidStudio4.1

Linux Syntax: ~/.config/Google/

Example: ~/.config/Google/AndroidStudio4.1

check it out here

like image 164
Uuu Uuu Avatar answered Nov 14 '22 07:11

Uuu Uuu