Man1s
Man1s

Reputation: 362

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.

Upvotes: 7

Views: 2212

Answers (1)

Uuu Uuu
Uuu Uuu

Reputation: 1282

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

Upvotes: 2

Related Questions