├── .gitignore ├── AndroidStudioPortable.exe ├── App ├── AppInfo │ ├── Launcher │ │ ├── AndroidStudioPortable.ini │ │ ├── Custom.nsh │ │ └── Splash.jpg │ ├── appicon.ico │ ├── appicon_128.png │ ├── appicon_16.png │ ├── appicon_256.png │ ├── appicon_32.png │ ├── appicon_75.png │ └── appinfo.ini ├── DefaultData │ └── studio.exe.vmoptions └── Readme.txt ├── Other ├── Help │ └── Images │ │ ├── Donation_Button.png │ │ ├── Favicon.ico │ │ ├── Help_Background_Footer.png │ │ ├── Help_Background_Header.png │ │ └── Help_Logo_Top.png └── Source │ ├── AppNamePortable.ini │ ├── LauncherLicense.txt │ ├── PortableApps.comInstallerCustom.nsh │ └── Readme.txt └── help.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidStudioPortable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/AndroidStudioPortable.exe -------------------------------------------------------------------------------- /App/AppInfo/Launcher/AndroidStudioPortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/Launcher/AndroidStudioPortable.ini -------------------------------------------------------------------------------- /App/AppInfo/Launcher/Custom.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/Launcher/Custom.nsh -------------------------------------------------------------------------------- /App/AppInfo/Launcher/Splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/Launcher/Splash.jpg -------------------------------------------------------------------------------- /App/AppInfo/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/appicon.ico -------------------------------------------------------------------------------- /App/AppInfo/appicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/appicon_128.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/appicon_16.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/appicon_256.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/appicon_32.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/appicon_75.png -------------------------------------------------------------------------------- /App/AppInfo/appinfo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/AppInfo/appinfo.ini -------------------------------------------------------------------------------- /App/DefaultData/studio.exe.vmoptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/DefaultData/studio.exe.vmoptions -------------------------------------------------------------------------------- /App/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/App/Readme.txt -------------------------------------------------------------------------------- /Other/Help/Images/Donation_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Help/Images/Donation_Button.png -------------------------------------------------------------------------------- /Other/Help/Images/Favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Help/Images/Favicon.ico -------------------------------------------------------------------------------- /Other/Help/Images/Help_Background_Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Help/Images/Help_Background_Footer.png -------------------------------------------------------------------------------- /Other/Help/Images/Help_Background_Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Help/Images/Help_Background_Header.png -------------------------------------------------------------------------------- /Other/Help/Images/Help_Logo_Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Help/Images/Help_Logo_Top.png -------------------------------------------------------------------------------- /Other/Source/AppNamePortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Source/AppNamePortable.ini -------------------------------------------------------------------------------- /Other/Source/LauncherLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Source/LauncherLicense.txt -------------------------------------------------------------------------------- /Other/Source/PortableApps.comInstallerCustom.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Source/PortableApps.comInstallerCustom.nsh -------------------------------------------------------------------------------- /Other/Source/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/Other/Source/Readme.txt -------------------------------------------------------------------------------- /help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2wayne/AndroidStudioPortable/HEAD/help.html --------------------------------------------------------------------------------