Index: head/java/intellij/Makefile =================================================================== --- head/java/intellij/Makefile (revision 408693) +++ head/java/intellij/Makefile (revision 408694) @@ -1,54 +1,98 @@ # Created by: Tobias Kortkamp # $FreeBSD$ # Based on the devel/intellij port from OpenBSD by # Vadim Zhukov PORTNAME= intellij -PORTVERSION= 15.0.1 +PORTVERSION= 15.0.3 CATEGORIES= java devel -MASTER_SITES= https://download.jetbrains.com/idea/ \ - http://download.jetbrains.com/idea/ -DISTNAME= ideaIC-${PORTVERSION} +MASTER_SITES= https://download.jetbrains.com/idea/:jetbrains \ + http://download.jetbrains.com/idea/:jetbrains \ + GH:pty4j +DISTFILES= ideaIC-${PORTVERSION}.tar.gz:jetbrains \ + ${DISTNAME}.tar.gz:pty4j MAINTAINER= t@tobik.me -COMMENT= IntelliJ IDEA Java IDE +COMMENT= IntelliJ IDEA Community Edition LICENSE= APACHE20 +# Upstream has merged pty4j FreeBSD support but no offical release/tag +# with it yet +USE_GITHUB= yes +GH_ACCOUNT= traff +GH_PROJECT= pty4j +GH_TAGNAME= 335982264104fd4529f2ee75f08d1e1d9f9d544a + USE_JAVA= yes JAVA_VERSION= 1.7+ -NO_BUILD= yes +WRKDIST= ${WRKDIR}/idea-IC-143.1821.5 -WRKDIST= ${WRKDIR}/idea-IC-143.382.35 +IDEA_HOME= ${PREFIX}/${PORTNAME} -IDEA_HOME= ${PREFIX}/lib/intellij +USES= gmake -PLIST_SUB+= IDEA_HOME=${IDEA_HOME} +PLIST_SUB+= IDEA_HOME=${IDEA_HOME} \ + PTY4J_ARCH=${PTY4J_ARCH} SUB_FILES+= idea idea.desktop SUB_LIST+= IDEA_HOME=${IDEA_HOME} +.include + +# The directory we need to install Pty4J's native library in depends +# on the install target's architecture. We rebuild libpty.so instead +# of using one of the bundled ones which are FreeBSD 10.x only. +.if ${ARCH} == "amd64" +PTY4J_ARCH= x86_64 +.elif ${ARCH} == "i386" +PTY4J_ARCH= x86 +.else +PTY4J_ARCH= +.endif + +.if ${PTY4J_ARCH} != "" +# Despite what the name might suggest using the linux_x86_64 target +# will always build libpty.so for the native platform. +BUILD_WRKSRC= ${WRKSRC}/native +MAKEFILE= Makefile_freebsd +ALL_TARGET= linux_x86_64 +.else +# If native Pty4J support is missing IntelliJ IDEA will still work but +# without the ability to open terminals. +NO_BUILD= yes +.endif + do-install: ${MKDIR} ${STAGEDIR}${IDEA_HOME} @${TAR} -czf - -C ${WRKDIST} . | ${TAR} xzf - -C ${STAGEDIR}${IDEA_HOME} # Linux/Windows/OS X only so remove them @${RM} ${STAGEDIR}${IDEA_HOME}/bin/fsnotifier \ ${STAGEDIR}${IDEA_HOME}/bin/fsnotifier-arm \ ${STAGEDIR}${IDEA_HOME}/bin/fsnotifier64 \ ${STAGEDIR}${IDEA_HOME}/bin/libbreakgen.so \ ${STAGEDIR}${IDEA_HOME}/bin/libbreakgen64.so \ ${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-linux-amd64-0.10.jar \ ${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-linux-i386-0.10.jar \ ${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-osx-amd64-0.10.jar \ ${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-osx-i386-0.10.jar \ ${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-windows-amd64-0.10.jar \ ${STAGEDIR}${IDEA_HOME}/plugins/gradle/lib/native-platform-windows-i386-0.10.jar +# Remove the bundled native Pty4J support libraries and replace with our own @${RM} -r ${STAGEDIR}${IDEA_HOME}/lib/libpty +.if ${PTY4J_ARCH} != "" + ${MKDIR} ${STAGEDIR}${IDEA_HOME}/lib/libpty/freebsd/${PTY4J_ARCH} +# See above why we always use freebsd/x86_64/ here + ${INSTALL_LIB} ${WRKSRC}/os/freebsd/x86_64/libpty.so ${STAGEDIR}${IDEA_HOME}/lib/libpty/freebsd/${PTY4J_ARCH}/ + ${INSTALL_DATA} ${WRKSRC}/build/pty4j-0.5.jar ${STAGEDIR}${IDEA_HOME}/lib/pty4j-0.5.jar +.endif ${INSTALL_SCRIPT} ${WRKDIR}/idea ${STAGEDIR}${PREFIX}/bin/idea ${INSTALL_MAN} ${FILESDIR}/idea.1 ${STAGEDIR}${PREFIX}/man/man1 ${INSTALL_DATA} ${WRKDIR}/idea.desktop ${STAGEDIR}${PREFIX}/share/applications/ cd ${WRKDIST}/lib && ${JAVA_HOME}/bin/jar xf icons.jar ${INSTALL_DATA} ${WRKDIST}/lib/icon.png ${STAGEDIR}${IDEA_HOME}/idea.png +# Disable filewatcher warning message on IDEA startup + ${ECHO} "idea.filewatcher.disabled=true" >> ${STAGEDIR}${IDEA_HOME}/bin/idea.properties .include Index: head/java/intellij/distinfo =================================================================== --- head/java/intellij/distinfo (revision 408693) +++ head/java/intellij/distinfo (revision 408694) @@ -1,2 +1,4 @@ -SHA256 (ideaIC-15.0.1.tar.gz) = faca173b216cb3eeff53b499b432780a12c1543a27c36c0bef62cf2e82fc7cb5 -SIZE (ideaIC-15.0.1.tar.gz) = 230760554 +SHA256 (ideaIC-15.0.3.tar.gz) = 0a4b755f3a48b3b5ad1000e17a92462c33ad5a8cc4912d6e276bbc4bf1241296 +SIZE (ideaIC-15.0.3.tar.gz) = 232760076 +SHA256 (traff-pty4j-15.0.3-335982264104fd4529f2ee75f08d1e1d9f9d544a_GH0.tar.gz) = bf2ffe37e9ecc5cbca879023ce7822461b1996c4affc50aa71265bce5cda6e93 +SIZE (traff-pty4j-15.0.3-335982264104fd4529f2ee75f08d1e1d9f9d544a_GH0.tar.gz) = 4856849 Index: head/java/intellij/files/idea.desktop.in =================================================================== --- head/java/intellij/files/idea.desktop.in (revision 408693) +++ head/java/intellij/files/idea.desktop.in (revision 408694) @@ -1,12 +1,12 @@ [Desktop Entry] Version=1.0 Encoding=UTF-8 Type=Application -Name=IntelliJ Idea -GenericName=IntelliJ IDE +Name=IntelliJ IDEA Community Edition +GenericName=IntelliJ IDEA Community Edition Comment=IntelliJ Integrated Development Environment Icon=%%IDEA_HOME%%/idea.png Exec=%%IDEA_HOME%%/bin/idea.sh Terminal=false StartupNotify=true Categories=Application;Development; Index: head/java/intellij/pkg-descr =================================================================== --- head/java/intellij/pkg-descr (revision 408693) +++ head/java/intellij/pkg-descr (revision 408694) @@ -1,14 +1,14 @@ -IntelliJ IDEA is an advanced Java IDE developed by JetBrains and -focused on developer productivity. The community edition features: +IntelliJ IDEA is an advanced IDE developed by JetBrains and focused on +developer productivity. The community edition features: * An intelligent code editor that understands Java code; provides refactorings, code inspections and intentions, and allows for fast code navigation. * Integration with such tools as JUnit and TestNG, Ant and Maven, and popular version control systems including: CVS, Subversion and git. * XML-Java interoperability and comprehensive Groovy programming language support. * The Swing UI designer complements the suite of tools for developing Java desktop applications. WWW: http://www.jetbrains.com/idea/ Index: head/java/intellij/pkg-plist =================================================================== --- head/java/intellij/pkg-plist (revision 408693) +++ head/java/intellij/pkg-plist (revision 408694) @@ -1,1637 +1,1641 @@ bin/idea %%IDEA_HOME%%/idea.png %%IDEA_HOME%%/Install-Linux-tar.txt %%IDEA_HOME%%/LICENSE.txt %%IDEA_HOME%%/NOTICE.txt %%IDEA_HOME%%/bin/appletviewer.policy @comment %%IDEA_HOME%%/bin/fsnotifier @comment %%IDEA_HOME%%/bin/fsnotifier-arm @comment %%IDEA_HOME%%/bin/fsnotifier64 %%IDEA_HOME%%/bin/idea.png %%IDEA_HOME%%/bin/idea.properties %%IDEA_HOME%%/bin/idea.sh %%IDEA_HOME%%/bin/idea.vmoptions %%IDEA_HOME%%/bin/idea64.vmoptions %%IDEA_HOME%%/bin/inspect.sh @comment %%IDEA_HOME%%/bin/libbreakgen.so @comment %%IDEA_HOME%%/bin/libbreakgen64.so %%IDEA_HOME%%/bin/log.xml %%IDEA_HOME%%/build.txt %%IDEA_HOME%%/lib/annotations.jar %%IDEA_HOME%%/lib/ant/INSTALL %%IDEA_HOME%%/lib/ant/KEYS %%IDEA_HOME%%/lib/ant/LICENSE %%IDEA_HOME%%/lib/ant/NOTICE %%IDEA_HOME%%/lib/ant/README %%IDEA_HOME%%/lib/ant/WHATSNEW %%IDEA_HOME%%/lib/ant/docs.zip %%IDEA_HOME%%/lib/ant/fetch.xml %%IDEA_HOME%%/lib/ant/get-m2.xml %%IDEA_HOME%%/lib/ant/lib/README %%IDEA_HOME%%/lib/ant/lib/ant-antlr.jar %%IDEA_HOME%%/lib/ant/lib/ant-antlr.pom %%IDEA_HOME%%/lib/ant/lib/ant-apache-bcel.jar %%IDEA_HOME%%/lib/ant/lib/ant-apache-bcel.pom %%IDEA_HOME%%/lib/ant/lib/ant-apache-bsf.jar %%IDEA_HOME%%/lib/ant/lib/ant-apache-bsf.pom %%IDEA_HOME%%/lib/ant/lib/ant-apache-log4j.jar %%IDEA_HOME%%/lib/ant/lib/ant-apache-log4j.pom %%IDEA_HOME%%/lib/ant/lib/ant-apache-oro.jar %%IDEA_HOME%%/lib/ant/lib/ant-apache-oro.pom %%IDEA_HOME%%/lib/ant/lib/ant-apache-regexp.jar %%IDEA_HOME%%/lib/ant/lib/ant-apache-regexp.pom %%IDEA_HOME%%/lib/ant/lib/ant-apache-resolver.jar %%IDEA_HOME%%/lib/ant/lib/ant-apache-resolver.pom %%IDEA_HOME%%/lib/ant/lib/ant-apache-xalan2.jar %%IDEA_HOME%%/lib/ant/lib/ant-apache-xalan2.pom %%IDEA_HOME%%/lib/ant/lib/ant-commons-logging.jar %%IDEA_HOME%%/lib/ant/lib/ant-commons-logging.pom %%IDEA_HOME%%/lib/ant/lib/ant-commons-net.jar %%IDEA_HOME%%/lib/ant/lib/ant-commons-net.pom %%IDEA_HOME%%/lib/ant/lib/ant-jai.jar %%IDEA_HOME%%/lib/ant/lib/ant-jai.pom %%IDEA_HOME%%/lib/ant/lib/ant-javamail.jar %%IDEA_HOME%%/lib/ant/lib/ant-javamail.pom %%IDEA_HOME%%/lib/ant/lib/ant-jdepend.jar %%IDEA_HOME%%/lib/ant/lib/ant-jdepend.pom %%IDEA_HOME%%/lib/ant/lib/ant-jmf.jar %%IDEA_HOME%%/lib/ant/lib/ant-jmf.pom %%IDEA_HOME%%/lib/ant/lib/ant-jsch.jar %%IDEA_HOME%%/lib/ant/lib/ant-jsch.pom %%IDEA_HOME%%/lib/ant/lib/ant-junit.jar %%IDEA_HOME%%/lib/ant/lib/ant-junit.pom %%IDEA_HOME%%/lib/ant/lib/ant-junit4.jar %%IDEA_HOME%%/lib/ant/lib/ant-junit4.pom %%IDEA_HOME%%/lib/ant/lib/ant-launcher.jar %%IDEA_HOME%%/lib/ant/lib/ant-launcher.pom %%IDEA_HOME%%/lib/ant/lib/ant-netrexx.jar %%IDEA_HOME%%/lib/ant/lib/ant-netrexx.pom %%IDEA_HOME%%/lib/ant/lib/ant-parent.pom %%IDEA_HOME%%/lib/ant/lib/ant-swing.jar %%IDEA_HOME%%/lib/ant/lib/ant-swing.pom %%IDEA_HOME%%/lib/ant/lib/ant-testutil.jar %%IDEA_HOME%%/lib/ant/lib/ant-testutil.pom %%IDEA_HOME%%/lib/ant/lib/ant.jar %%IDEA_HOME%%/lib/ant/lib/ant.pom %%IDEA_HOME%%/lib/ant/lib/libraries.properties %%IDEA_HOME%%/lib/asm-all.jar %%IDEA_HOME%%/lib/asm-commons.jar %%IDEA_HOME%%/lib/asm.jar %%IDEA_HOME%%/lib/asm4-all.jar %%IDEA_HOME%%/lib/automaton.jar %%IDEA_HOME%%/lib/boot.jar %%IDEA_HOME%%/lib/bootstrap.jar %%IDEA_HOME%%/lib/cglib-2.2.2.jar %%IDEA_HOME%%/lib/cli-parser-1.1.jar %%IDEA_HOME%%/lib/commons-codec-1.9.jar %%IDEA_HOME%%/lib/commons-httpclient-3.1-patched.jar %%IDEA_HOME%%/lib/commons-logging-1.2.jar %%IDEA_HOME%%/lib/commons-net-3.3.jar %%IDEA_HOME%%/lib/coverage-agent.jar %%IDEA_HOME%%/lib/coverage-instrumenter.jar %%IDEA_HOME%%/lib/coverage-util.jar %%IDEA_HOME%%/lib/ecj-4.4.jar %%IDEA_HOME%%/lib/extensions.jar %%IDEA_HOME%%/lib/fluent-hc-4.4.1.jar %%IDEA_HOME%%/lib/forms_rt.jar %%IDEA_HOME%%/lib/groovy-all-2.3.9.jar %%IDEA_HOME%%/lib/gson-2.3.1.jar %%IDEA_HOME%%/lib/guava-17.0.jar %%IDEA_HOME%%/lib/hamcrest-core-1.3.jar %%IDEA_HOME%%/lib/httpclient-4.4.1.jar %%IDEA_HOME%%/lib/httpcore-4.4.1.jar %%IDEA_HOME%%/lib/httpmime-4.4.1.jar %%IDEA_HOME%%/lib/icons.jar %%IDEA_HOME%%/lib/idea.jar %%IDEA_HOME%%/lib/idea_rt.jar %%IDEA_HOME%%/lib/imgscalr-lib-4.2.jar %%IDEA_HOME%%/lib/isorelax.jar %%IDEA_HOME%%/lib/javac2.jar %%IDEA_HOME%%/lib/jaxen-1.1.3.jar %%IDEA_HOME%%/lib/jayatana-1.2.4.jar %%IDEA_HOME%%/lib/jcip-annotations.jar %%IDEA_HOME%%/lib/jdkAnnotations.jar %%IDEA_HOME%%/lib/jdom.jar %%IDEA_HOME%%/lib/jgoodies-common-1.2.1.jar %%IDEA_HOME%%/lib/jgoodies-forms.jar %%IDEA_HOME%%/lib/jgoodies-looks-2.4.2.jar %%IDEA_HOME%%/lib/jh.jar %%IDEA_HOME%%/lib/jing.jar %%IDEA_HOME%%/lib/jna-platform.jar %%IDEA_HOME%%/lib/jna.jar %%IDEA_HOME%%/lib/jps-builders.jar %%IDEA_HOME%%/lib/jps-launcher.jar %%IDEA_HOME%%/lib/jps-model.jar %%IDEA_HOME%%/lib/jsch-0.1.52.jar %%IDEA_HOME%%/lib/jsch.agentproxy.connector-factory.jar %%IDEA_HOME%%/lib/jsch.agentproxy.core.jar %%IDEA_HOME%%/lib/jsch.agentproxy.pageant.jar %%IDEA_HOME%%/lib/jsch.agentproxy.sshagent.jar %%IDEA_HOME%%/lib/jsch.agentproxy.usocket-jna.jar %%IDEA_HOME%%/lib/jsch.agentproxy.usocket-nc.jar %%IDEA_HOME%%/lib/jsr166e.jar %%IDEA_HOME%%/lib/jsr173_1.0_api.jar %%IDEA_HOME%%/lib/junit-4.12.jar %%IDEA_HOME%%/lib/junit.jar %%IDEA_HOME%%/lib/jzlib-1.1.1.jar %%IDEA_HOME%%/lib/kotlin-reflect.jar %%IDEA_HOME%%/lib/kotlin-runtime.jar +%%IDEA_HOME%%/lib/libpty/freebsd/%%PTY4J_ARCH%%/libpty.so @comment %%IDEA_HOME%%/lib/libpty/linux/x86/libpty.so @comment %%IDEA_HOME%%/lib/libpty/linux/x86_64/libpty.so @comment %%IDEA_HOME%%/lib/libpty/macosx/x86/libpty.dylib @comment %%IDEA_HOME%%/lib/libpty/macosx/x86_64/libpty.dylib @comment %%IDEA_HOME%%/lib/libpty/win/x86/libwinpty.dll @comment %%IDEA_HOME%%/lib/libpty/win/x86/winpty-agent.exe @comment %%IDEA_HOME%%/lib/libpty/win/x86_64/cyglaunch.exe @comment %%IDEA_HOME%%/lib/libpty/win/x86_64/libwinpty.dll @comment %%IDEA_HOME%%/lib/libpty/win/x86_64/winpty-agent.exe @comment %%IDEA_HOME%%/lib/libpty/win/xp/libwinpty.dll @comment %%IDEA_HOME%%/lib/libpty/win/xp/winpty-agent.exe %%IDEA_HOME%%/lib/log4j.jar %%IDEA_HOME%%/lib/markdown4j-2.2.jar %%IDEA_HOME%%/lib/markdownj-core-0.4.2-SNAPSHOT.jar %%IDEA_HOME%%/lib/microba.jar %%IDEA_HOME%%/lib/miglayout-swing.jar %%IDEA_HOME%%/lib/nanoxml-2.2.3.jar %%IDEA_HOME%%/lib/nekohtml-1.9.14.jar -%%IDEA_HOME%%/lib/netty-all-4.1.0.Beta6.jar +%%IDEA_HOME%%/lib/netty-all-4.1.0.Beta8.jar %%IDEA_HOME%%/lib/openapi.jar %%IDEA_HOME%%/lib/optimizedFileManager.jar %%IDEA_HOME%%/lib/oromatcher.jar %%IDEA_HOME%%/lib/picocontainer.jar %%IDEA_HOME%%/lib/protobuf-2.5.0.jar %%IDEA_HOME%%/lib/proxy-vole_20131209.jar %%IDEA_HOME%%/lib/pty4j-0.5.jar %%IDEA_HOME%%/lib/purejavacomm.jar %%IDEA_HOME%%/lib/resolver.jar %%IDEA_HOME%%/lib/resources.jar %%IDEA_HOME%%/lib/resources_en.jar %%IDEA_HOME%%/lib/rhino-js-1_7R4.jar %%IDEA_HOME%%/lib/rngom-20051226-patched.jar %%IDEA_HOME%%/lib/rt/jps-plugin-system.jar %%IDEA_HOME%%/lib/rt/required_for_dist.txt %%IDEA_HOME%%/lib/sanselan-0.98-snapshot.jar %%IDEA_HOME%%/lib/serviceMessages.jar %%IDEA_HOME%%/lib/slf4j-api-1.7.10.jar %%IDEA_HOME%%/lib/slf4j-log4j12-1.7.10.jar %%IDEA_HOME%%/lib/snappy-in-java-0.3.1.jar %%IDEA_HOME%%/lib/src/trove4j_src.jar %%IDEA_HOME%%/lib/swingx-core-1.6.2.jar %%IDEA_HOME%%/lib/trang-core.jar %%IDEA_HOME%%/lib/trove4j.jar %%IDEA_HOME%%/lib/util.jar %%IDEA_HOME%%/lib/velocity.jar %%IDEA_HOME%%/lib/winp-1.23.jar %%IDEA_HOME%%/lib/xbean.jar %%IDEA_HOME%%/lib/xercesImpl.jar %%IDEA_HOME%%/lib/xml-apis.jar %%IDEA_HOME%%/lib/xmlrpc-2.0.jar %%IDEA_HOME%%/lib/xpp3-1.1.4-min.jar %%IDEA_HOME%%/lib/xstream-1.4.3.jar %%IDEA_HOME%%/license/XStream_license.txt %%IDEA_HOME%%/license/ant_license.txt %%IDEA_HOME%%/license/asm_license.txt %%IDEA_HOME%%/license/eclipse_license.txt %%IDEA_HOME%%/license/growl.license %%IDEA_HOME%%/license/gson_license.txt %%IDEA_HOME%%/license/imgscalr_license.txt %%IDEA_HOME%%/license/javahelp_license.html %%IDEA_HOME%%/license/javolution_license.txt %%IDEA_HOME%%/license/jaxb_license.txt %%IDEA_HOME%%/license/jaxen_license.txt %%IDEA_HOME%%/license/jayatana_license.txt %%IDEA_HOME%%/license/jdom_license.txt %%IDEA_HOME%%/license/jgoodies_forms_license.txt %%IDEA_HOME%%/license/junit_license.txt %%IDEA_HOME%%/license/kryo-license.txt %%IDEA_HOME%%/license/log4j_license.txt %%IDEA_HOME%%/license/microba_license.txt %%IDEA_HOME%%/license/miglayout_swing_license.txt %%IDEA_HOME%%/license/nanoxml_license.txt %%IDEA_HOME%%/license/oromatcher_license.txt %%IDEA_HOME%%/license/picoContainer_license.txt %%IDEA_HOME%%/license/sanselan_license.txt %%IDEA_HOME%%/license/saxon-conditions.html %%IDEA_HOME%%/license/sqljet-license.txt %%IDEA_HOME%%/license/svnkit-license.txt %%IDEA_HOME%%/license/swingx_license.txt %%IDEA_HOME%%/license/winp_license.txt %%IDEA_HOME%%/license/xerces_license.txt %%IDEA_HOME%%/license/xmlrpc_license.txt %%IDEA_HOME%%/license/yourkit-license-redist.txt %%IDEA_HOME%%/plugins/ByteCodeViewer/lib/byteCodeViewer.jar %%IDEA_HOME%%/plugins/Groovy/lib/Groovy.jar %%IDEA_HOME%%/plugins/Groovy/lib/agent/gragent.jar %%IDEA_HOME%%/plugins/Groovy/lib/console.txt %%IDEA_HOME%%/plugins/Groovy/lib/groovy-jps-plugin.jar %%IDEA_HOME%%/plugins/Groovy/lib/groovy-rt-constants.jar %%IDEA_HOME%%/plugins/Groovy/lib/groovy-starter.conf %%IDEA_HOME%%/plugins/Groovy/lib/groovy_rt.jar %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/bindableTransform.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/categoryTransform.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/closuresInMethod.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/defaultMethods.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/extensions.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/gantScript.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/indexedProperty.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/listenerList.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/metaDsl.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/newifyTransform.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/singletonTransform.gdsl %%IDEA_HOME%%/plugins/Groovy/lib/standardDsls/vetoableTransform.gdsl %%IDEA_HOME%%/plugins/IntelliLang/lib/IntelliLang.jar %%IDEA_HOME%%/plugins/IntelliLang/lib/intellilang-jps-plugin.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlin %%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlin.bat %%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc %%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc-js %%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc-js.bat %%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc-jvm %%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc-jvm.bat %%IDEA_HOME%%/plugins/Kotlin/kotlinc/bin/kotlinc.bat %%IDEA_HOME%%/plugins/Kotlin/kotlinc/build.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/android-compiler-plugin.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-android-sdk-annotations.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-ant.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-compiler.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-jdk-annotations.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-jslib-sources.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-jslib.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-preloader.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-reflect.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-runner.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-runtime-sources.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-runtime.jar -%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlinr.jar %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/LICENSE.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/NOTICE.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/args4j_LICENSE.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/asm_license.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/closure-compiler_LICENSE.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/dart_LICENSE.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/jshashtable_license.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/json_LICENSE.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/pcollections_LICENSE.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/prototype_license.txt %%IDEA_HOME%%/plugins/Kotlin/kotlinc/license/third_party/rhino_LICENSE.txt %%IDEA_HOME%%/plugins/Kotlin/lib/javax.inject.jar %%IDEA_HOME%%/plugins/Kotlin/lib/jps/kotlin-jps-plugin.jar %%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-plugin.jar %%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-reflect.jar %%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-runtime.jar +%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-daemon-client.jar +%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-test.jar +%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-android-extensions-compiler-plugin.jar +%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-android-extensions-plugin.jar %%IDEA_HOME%%/plugins/Kotlin/lib/markdown.jar %%IDEA_HOME%%/plugins/android/lib/GoogleFeedback.jar %%IDEA_HOME%%/plugins/android/lib/android-common.jar %%IDEA_HOME%%/plugins/android/lib/android-rt.jar %%IDEA_HOME%%/plugins/android/lib/android.jar %%IDEA_HOME%%/plugins/android/lib/androidAnnotations.jar %%IDEA_HOME%%/plugins/android/lib/androidWidgets/theme-editor-widgets.jar %%IDEA_HOME%%/plugins/android/lib/asm-5.0.3.jar %%IDEA_HOME%%/plugins/android/lib/asm-analysis-5.0.3.jar %%IDEA_HOME%%/plugins/android/lib/asm-tree-5.0.3.jar %%IDEA_HOME%%/plugins/android/lib/bcpkix-jdk15on-1.48.jar %%IDEA_HOME%%/plugins/android/lib/bcprov-jdk15on-1.48.jar %%IDEA_HOME%%/plugins/android/lib/builder-model-1.3.0.jar %%IDEA_HOME%%/plugins/android/lib/common.jar %%IDEA_HOME%%/plugins/android/lib/commons-compress-1.0.jar %%IDEA_HOME%%/plugins/android/lib/device-art-resources/device-art.xml %%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/galaxy_nexus/thumb.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_10/thumb.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_4/thumb.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7/thumb.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_7_2013/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_9/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/button.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/power.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/power_land.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/thumb.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/volume_down.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/volume_down_land.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/volume_up.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_one/volume_up_land.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/button.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/power.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/power_land.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/thumb.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/volume_down.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/volume_down_land.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/volume_up.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_s/volume_up_land.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/phone/phone_back_simple_land.9.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/phone/phone_back_simple_port.9.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/phone/phone_shadow_simple_land.9.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/phone/phone_shadow_simple_port.9.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tablet/tablet_back_simple.9.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tablet/tablet_shadow_simple_land.9.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tablet/tablet_shadow_simple_port.9.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_1080p/back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_1080p/fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_1080p/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_1080p/shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_720p/back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_720p/fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_720p/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/tv_720p/shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/arrow_down.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/arrow_left.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/arrow_right.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/arrow_up.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/button.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_320px.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_380px.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/circle_mask_380px_onion.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/controls.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/hardware.ini %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/key.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/mask.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/select.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_round/shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/layout %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/mask.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/wear_square/shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/land_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/land_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/land_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/port_back.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/port_fore.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/port_shadow.png %%IDEA_HOME%%/plugins/android/lib/device-art-resources/xoom/thumb.png %%IDEA_HOME%%/plugins/android/lib/freemarker-2.3.20.jar %%IDEA_HOME%%/plugins/android/lib/jarutils.jar %%IDEA_HOME%%/plugins/android/lib/javawriter-2.2.1.jar %%IDEA_HOME%%/plugins/android/lib/jps/android-gradle-jps.jar %%IDEA_HOME%%/plugins/android/lib/jps/android-jps-plugin.jar %%IDEA_HOME%%/plugins/android/lib/jsr305-1.3.9.jar %%IDEA_HOME%%/plugins/android/lib/kxml2-2.3.0.jar %%IDEA_HOME%%/plugins/android/lib/layoutlib-api.jar %%IDEA_HOME%%/plugins/android/lib/lombok-ast-0.2.3.jar %%IDEA_HOME%%/plugins/android/lib/manifest-merger.jar %%IDEA_HOME%%/plugins/android/lib/resources_en.jar %%IDEA_HOME%%/plugins/android/lib/sdk-common.jar %%IDEA_HOME%%/plugins/android/lib/sdk-tools.jar %%IDEA_HOME%%/plugins/android/lib/sdklib.jar %%IDEA_HOME%%/plugins/android/lib/spantable.jar %%IDEA_HOME%%/plugins/android/lib/templates/NOTICE %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/res/layout/blank_activity.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/root/src/app_package/BlankActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/AlwaysOnWearActivity/template_thumb.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/app_icon_quantum.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/app_icon_quantum_card.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/card_background_default.9.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/default_background.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/grid_bg.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/movie.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/scrubber_disabled.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/scrubber_focussed.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/scrubber_normal.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/scrubber_pressed.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/shadow7.9.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/star_icon.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/videos_by_google_banner.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-hdpi/videos_by_google_icon.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/app_icon_quantum.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/app_icon_quantum_card.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/videos_by_google_banner.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-mdpi/videos_by_google_icon.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/app_icon_quantum.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/app_icon_quantum_card.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/default_background.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/grid_bg.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_pause_playcontrol_focussed.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_pause_playcontrol_normal.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_pause_playcontrol_pressed.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_action_focussed.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_action_normal.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_action_pressed.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_playcontrol_focussed.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_playcontrol_normal.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/ic_play_playcontrol_pressed.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/movie.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/star_icon.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/videos_by_google_banner.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xhdpi/videos_by_google_icon.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xxhdpi/app_icon_quantum.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xxhdpi/app_icon_quantum_card.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xxhdpi/videos_by_google_banner.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable-xxhdpi/videos_by_google_icon.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/app_icon_quantum.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/app_icon_quantum_card.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/app_icon_your_company.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/details_img.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/ic_action_a.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/ic_title.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/movie.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/player_bg_gradient_dark.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/shadow7.9.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/videos_by_google_banner.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/drawable/videos_by_google_icon.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/layout/activity_details.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/layout/activity_main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/layout/playback_controls.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/menu/global.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values/colors.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/res/values/themes.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/BrowseErrorActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/CardPresenter.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/DetailsActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/DetailsDescriptionPresenter.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/ErrorFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MainActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MainFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/Movie.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/MovieList.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PicassoBackgroundManagerTarget.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PlaybackOverlayActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/PlaybackOverlayFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/Utils.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/root/src/app_package/VideoDetailsFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/template-leanback-TV.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/AndroidTVActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/root/res/layout/activity_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/root/src/app_package/SimpleActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivity/template_blank_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/res/layout/activity_fragment_container.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/res/layout/fragment_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/src/app_package/SimpleActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/src/app_package/SimpleActivityFragment.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/root/src/app_package/include_options_menu.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankActivityWithFragment/template_blank_activity_fragment.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/layout/blank_activity.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/layout/rect.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/layout/round.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/root/src/app_package/BlankActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/BlankWearActivity/templates-WatchViewStub-Wear.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/root/res/layout/activity_simple.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/root/src/app_package/SimpleActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/EmptyActivity/template_blank_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/layout/activity_fullscreen.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values-v11/styles.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/attrs.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/colors.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/res/values/styles.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/src/app_package/FullscreenActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/src/app_package/util/SystemUiHider.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/src/app_package/util/SystemUiHiderBase.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/src/app_package/util/SystemUiHiderHoneycomb.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/template_fullscreen_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/layout/activity_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/root/src/app_package/SimpleActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity_banner.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_admob_activity_interstitial.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleAdMobAdsActivity/template_blank_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/debugRes/values/google_maps_api.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/releaseRes/values/google_maps_api.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/res/layout/activity_map.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/root/src/app_package/MapActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsActivity/template_map_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/GooglePlayServicesActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GooglePlayServicesActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GooglePlayServicesActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GooglePlayServicesActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GooglePlayServicesActivity/root/src/app_package/activity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/GooglePlayServicesActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/GooglePlayServicesActivity/template_play_services_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/res/layout/activity_login.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/res/values/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/LoginActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/root/src/app_package/PlusBaseActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/LoginActivity/template_login_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/activity_content_detail.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/activity_content_list.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/activity_content_twopane.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_content_detail.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values-large/refs.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values-sw600dp/refs.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentDetailActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentDetailFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentListActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/ContentListFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/src/app_package/dummy/DummyContent.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/template_master_detail.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-hdpi/drawer_shadow.9.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-hdpi/ic_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-mdpi/drawer_shadow.9.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-mdpi/ic_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-xhdpi/drawer_shadow.9.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-xhdpi/ic_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-xxhdpi/drawer_shadow.9.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/drawable-xxhdpi/ic_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/activity_drawer.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/fragment_navigation_drawer.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/layout/fragment_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/menu/global.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/DrawerActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/NavigationDrawerFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/include_fragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/src/app_package/include_options_menu.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/template_blank_activity_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/pref_data_sync.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/pref_general.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/pref_headers.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/xml/pref_notification.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/src/app_package/SettingsActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/template_settings_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/activity_fragment_container.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/activity_pager.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/layout/fragment_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/DropdownActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/TabsAndPagerActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/include_fragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/root/src/app_package/include_options_menu.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/template_blank_activity_dropdown.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/template_blank_activity_pager.png %%IDEA_HOME%%/plugins/android/lib/templates/activities/TabbedActivity/template_blank_activity_tabs.png %%IDEA_HOME%%/plugins/android/lib/templates/build.gradle %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/layout/activity_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/root/src/app_package/SimpleActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivity/template_blank_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/layout/activity_fragment_container.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/layout/fragment_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/src/app_package/SimpleActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/src/app_package/include_fragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/root/src/app_package/include_options_menu.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/BlankActivityWithFragment/template_blank_activity_fragment.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/root/res/layout/activity_simple.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/root/src/app_package/SimpleActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/EmptyActivity/template_blank_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/layout/activity_fullscreen.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values-v11/styles.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values/attrs.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values/colors.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/res/values/styles.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/src/app_package/FullscreenActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/src/app_package/util/SystemUiHider.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/src/app_package/util/SystemUiHiderBase.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/root/src/app_package/util/SystemUiHiderHoneycomb.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/FullscreenActivity/template_fullscreen_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/res/layout/activity_login.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/res/values/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/src/app_package/LoginActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/root/src/app_package/PlusBaseActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/LoginActivity/template_login_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/layout/activity_content_detail.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/layout/activity_content_list.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/layout/activity_content_twopane.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/layout/fragment_content_detail.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/values-large/refs.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/values-sw600dp/refs.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/ContentDetailActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/ContentDetailFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/ContentListActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/ContentListFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/root/src/app_package/dummy/DummyContent.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/MasterDetailFlow/template_master_detail.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-hdpi/drawer_shadow.9.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-hdpi/ic_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-mdpi/drawer_shadow.9.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-mdpi/ic_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-xhdpi/drawer_shadow.9.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-xhdpi/ic_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-xxhdpi/drawer_shadow.9.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/drawable-xxhdpi/ic_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/layout/activity_drawer.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/layout/fragment_navigation_drawer.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/layout/fragment_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/menu/global.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/src/app_package/DrawerActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/src/app_package/NavigationDrawerFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/src/app_package/include_fragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/root/src/app_package/include_options_menu.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/NavigationDrawerActivity/template_blank_activity_drawer.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/xml/pref_data_sync.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/xml/pref_general.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/xml/pref_headers.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/res/xml/pref_notification.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/root/src/app_package/SettingsActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/SettingsActivity/template_settings_activity.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/layout/activity_fragment_container.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/layout/activity_pager.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/layout/fragment_simple.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/menu/main.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/values-w820dp/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/src/app_package/DropdownActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/src/app_package/TabsAndPagerActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/src/app_package/include_fragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/root/src/app_package/include_options_menu.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/template_blank_activity_dropdown.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/template_blank_activity_pager.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/activities/TabbedActivity/template_blank_activity_tabs.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/utils/dependencies.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/wrapper/gradle/wrapper/gradle-wrapper.jar %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/wrapper/gradle/wrapper/gradle-wrapper.properties %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/wrapper/gradlew %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/gradle/wrapper/gradlew.bat %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFile/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFile/root/src/app_package/interface.aidl.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFile/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AidlFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AndroidManifest/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AndroidManifest/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AndroidManifest/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AndroidManifest/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/drawable-nodpi/example_appwidget_preview.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/layout/appwidget.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/layout/appwidget_configure.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/values-v14/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/values/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/res/xml/appwidget_info.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/src/app_package/AppWidget.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/root/src/app_package/AppWidgetConfigureActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x1.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x1_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x1_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x1_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x2.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x2_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x2_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x2_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x3.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x3_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x3_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x3_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x4.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x4_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x4_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_1x4_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x1.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x1_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x1_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x1_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x2.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x2_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x2_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x2_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x3.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x3_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x3_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x3_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x4.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x4_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x4_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_2x4_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x1.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x1_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x1_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x1_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x2.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x2_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x2_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x2_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x3.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x3_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x3_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x3_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x4.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x4_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x4_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_3x4_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x1.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x1_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x1_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x1_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x2.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x2_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x2_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x2_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x3.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x3_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x3_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x3_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x4.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x4_h.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x4_v.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AppWidget/thumbs/template_widget_4x4_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AssetsFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AssetsFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/AssetsFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/root/res/layout/fragment_blank.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/root/res/values/strings.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/root/src/app_package/BlankFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BlankFragment/template_blank_fragment.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/root/src/app_package/BroadcastReceiver.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/BroadcastReceiver/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/root/src/app_package/ContentProvider.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ContentProvider/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/root/res/layout/sample.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/root/res/values/attrs.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/root/src/app_package/CustomView.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/CustomView/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/res/layout-v17/dream.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/res/xml/dream_prefs.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/res/xml/xml_dream.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/src/app_package/DreamService.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/root/src/app_package/SettingsActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Daydream/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/root/src/app_package/IntentService.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/IntentService/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JavaFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JavaFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JavaFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JniFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JniFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/JniFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/LayoutResourceFile/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/LayoutResourceFile/root/res/layout.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/LayoutResourceFile/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/layout/fragment_grid.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/layout/fragment_list.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/values-large/refs_lrg.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/values-sw600dp/refs_lrg.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/values/refs.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/res/values/refs_lrg.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/src/app_package/ListFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/root/src/app_package/dummy/DummyContent.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ListFragment/templates_list_fragment.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-hdpi/ic_action_stat_reply.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-hdpi/ic_action_stat_share.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-mdpi/ic_action_stat_reply.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-mdpi/ic_action_stat_share.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-nodpi/example_picture_large.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-nodpi/example_picture_small.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-xhdpi/ic_action_stat_reply.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/drawable-xhdpi/ic_action_stat_share.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/root/src/app_package/NotificationHelper.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_list.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_list_actions.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_none.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_none_actions.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_picture.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_picture_actions.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_text.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Notification/template_notification_text_actions.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/root/res/layout/fragment_plus_one.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/root/src/app_package/PlusOneFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/PlusOneFragment/templates_plusone_fragment.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResourcesFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResourcesFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ResourcesFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/RsFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/RsFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/RsFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/root/src/app_package/Service.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/Service/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ValueResourceFile/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ValueResourceFile/root/res/values.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/other/ValueResourceFile/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidApplication/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewAndroidLibrary/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/root/src/library_package/Placeholder.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/eclipse/projects/NewJavaLibrary/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/module_ignore %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/proguard-rules.txt.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-hdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-mdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xxhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/mipmap-xxxhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/AndroidWearModule/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/ImportExistingProject/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/ImportExistingProject/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/root/gradle.properties.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/root/local.properties.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/root/project_ignore %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidAutoProject/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/module_ignore %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/proguard-rules.txt.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-hdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-mdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xxhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/mipmap-xxxhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values-v21/styles.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/res/values/styles.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/test/app_package/ApplicationTest.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/root/test/app_package/ExampleUnitTest.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidModule/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/gradle.properties.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/local.properties.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/project_ignore %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidProject/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/module_ignore %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/proguard-rules.txt.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-hdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-mdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xxhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/mipmap-xxxhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/res/values/styles.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/root/test/app_package/ApplicationTest.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewAndroidTVModule/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/module_ignore %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/proguard-rules.txt.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-hdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-mdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-xhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-xxhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/mipmap-xxxhdpi/ic_launcher.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/res/values/styles.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/root/test/app_package/ApplicationTest.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewGlassModule/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/root/gitignore %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/root/settings.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/root/src/library_package/Placeholder.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/gradle-projects/NewJavaLibrary/template_new_project.png %%IDEA_HOME%%/plugins/android/lib/templates/gradle/utils/dependencies.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/gradle/wrapper/gradle/wrapper/gradle-wrapper.jar %%IDEA_HOME%%/plugins/android/lib/templates/gradle/wrapper/gradle/wrapper/gradle-wrapper.properties %%IDEA_HOME%%/plugins/android/lib/templates/gradle/wrapper/gradlew %%IDEA_HOME%%/plugins/android/lib/templates/gradle/wrapper/gradlew.bat %%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFile/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFile/root/src/app_package/interface.aidl.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFile/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AidlFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/root/res/values-v21/styles.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/root/res/xml/automotive_app_desc.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/root/src/app_package/MusicService.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMediaService/templates-mediaService-Auto.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/res/xml/automotive_app_desc.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/src/app_package/MessageReadReceiver.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/src/app_package/MessageReplyReceiver.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/root/src/app_package/MessagingService.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidAutoMessagingService/templates-messagingService-Auto.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidManifest/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidManifest/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidManifest/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AndroidManifest/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/drawable-nodpi/example_appwidget_preview.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/layout/appwidget.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/layout/appwidget_configure.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/values-v14/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/values/dimens.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/res/xml/appwidget_info.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/src/app_package/AppWidget.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/root/src/app_package/AppWidgetConfigureActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x1_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x2_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x3_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_1x4_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x1_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x2_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x3_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_2x4_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x1_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x2_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x3_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_3x4_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x1_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x2_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x3_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_h.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_v.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AppWidget/thumbs/template_widget_4x4_vh.png %%IDEA_HOME%%/plugins/android/lib/templates/other/AssetsFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AssetsFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/AssetsFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/root/res/layout/fragment_blank.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/root/res/values/strings.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/root/src/app_package/BlankFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/BlankFragment/template_blank_fragment.png %%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/root/src/app_package/BroadcastReceiver.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/BroadcastReceiver/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/root/src/app_package/ContentProvider.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ContentProvider/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/root/res/layout/sample.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/root/res/values/attrs.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/root/src/app_package/CustomView.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/CustomView/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/res/layout-v17/dream.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/res/xml/dream_prefs.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/res/xml/xml_dream.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/src/app_package/DreamService.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/root/src/app_package/SettingsActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Daydream/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/res/layout/activity_display.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/res/values/strings.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/src/app_package/BroadcastReceiver.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/src/app_package/DisplayActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/root/src/app_package/StubActivity.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/DisplayNotification/templates-activityView-Wear.png %%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/root/src/app_package/IntentService.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/IntentService/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/JavaFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/JavaFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/JavaFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/JniFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/JniFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/JniFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/LayoutResourceFile/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/LayoutResourceFile/root/res/layout.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/LayoutResourceFile/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/layout/fragment_grid.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/layout/fragment_list.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/values-large/refs_lrg.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/values-sw600dp/refs_lrg.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/values/refs.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/values/refs_lrg.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/src/app_package/ListFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/src/app_package/dummy/DummyContent.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/templates_list_fragment.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-hdpi/ic_action_stat_reply.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-hdpi/ic_action_stat_share.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-mdpi/ic_action_stat_reply.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-mdpi/ic_action_stat_share.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-nodpi/example_picture_large.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-nodpi/example_picture_small.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-xhdpi/ic_action_stat_reply.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/drawable-xhdpi/ic_action_stat_share.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/root/src/app_package/NotificationHelper.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_list.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_list_actions.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_none.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_none_actions.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_picture.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_picture_actions.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_text.png %%IDEA_HOME%%/plugins/android/lib/templates/other/Notification/template_notification_text_actions.png %%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/root/res/layout/fragment_plus_one.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/root/src/app_package/PlusOneFragment.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/PlusOneFragment/templates_plusone_fragment.png %%IDEA_HOME%%/plugins/android/lib/templates/other/ResFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ResFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ResFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/ResourcesFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ResourcesFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ResourcesFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/RsFolder/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/RsFolder/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/RsFolder/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/Service/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Service/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Service/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Service/root/src/app_package/Service.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/Service/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/ValueResourceFile/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ValueResourceFile/root/res/values.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/ValueResourceFile/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/analog_round.png %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/analog_square.png %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/digital_round.png %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/digital_square.png %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/globals.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/recipe.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/AndroidManifest.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/build.gradle.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_analog.png %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_digital.png %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/drawable-nodpi/preview_digital_circular.png %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/colors.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/dimens.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/values/strings.xml.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/res/xml/watch_face.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/src/app_package/MyAnalogWatchFaceService.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/root/src/app_package/MyDigitalWatchFaceService.java.ftl %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/template.xml %%IDEA_HOME%%/plugins/android/lib/templates/other/WatchFaceService/template_thumbnail.png %%IDEA_HOME%%/plugins/ant/lib/ant-jps-plugin.jar %%IDEA_HOME%%/plugins/ant/lib/antIntegration.jar %%IDEA_HOME%%/plugins/ant/lib/resources_en.jar %%IDEA_HOME%%/plugins/copyright/lib/copyright.jar %%IDEA_HOME%%/plugins/coverage/lib/coverage-report-idea.jar %%IDEA_HOME%%/plugins/coverage/lib/coverage-report.jar %%IDEA_HOME%%/plugins/coverage/lib/coverage.jar %%IDEA_HOME%%/plugins/coverage/lib/coverage_rt.jar %%IDEA_HOME%%/plugins/coverage/lib/freemarker.jar %%IDEA_HOME%%/plugins/coverage/lib/jacocoagent.jar %%IDEA_HOME%%/plugins/coverage/lib/jacocoant.jar %%IDEA_HOME%%/plugins/cvsIntegration/lib/cvsIntegration.jar %%IDEA_HOME%%/plugins/cvsIntegration/lib/cvs_util.jar %%IDEA_HOME%%/plugins/cvsIntegration/lib/javacvs-src.jar %%IDEA_HOME%%/plugins/cvsIntegration/lib/resources_en.jar %%IDEA_HOME%%/plugins/cvsIntegration/lib/smartcvs-src.jar %%IDEA_HOME%%/plugins/cvsIntegration/lib/trilead-ssh2-build213.jar %%IDEA_HOME%%/plugins/devkit/lib/devkit-jps-plugin.jar %%IDEA_HOME%%/plugins/devkit/lib/devkit.jar %%IDEA_HOME%%/plugins/devkit/lib/dtdparser113.jar %%IDEA_HOME%%/plugins/devkit/lib/resources_en.jar %%IDEA_HOME%%/plugins/eclipse/lib/common-eclipse-util.jar %%IDEA_HOME%%/plugins/eclipse/lib/eclipse-jps-plugin.jar %%IDEA_HOME%%/plugins/eclipse/lib/eclipse.jar %%IDEA_HOME%%/plugins/eclipse/lib/resources_en.jar %%IDEA_HOME%%/plugins/editorconfig/lib/editorconfig-core-java.jar %%IDEA_HOME%%/plugins/editorconfig/lib/editorconfig.jar %%IDEA_HOME%%/plugins/git4idea/lib/git4idea-rt.jar %%IDEA_HOME%%/plugins/git4idea/lib/git4idea.jar %%IDEA_HOME%%/plugins/git4idea/lib/ini4j-0.5.2-patched.jar %%IDEA_HOME%%/plugins/git4idea/lib/remote-servers-git.jar %%IDEA_HOME%%/plugins/git4idea/lib/resources_en.jar %%IDEA_HOME%%/plugins/git4idea/lib/trilead-ssh2.jar %%IDEA_HOME%%/plugins/github/lib/github.jar %%IDEA_HOME%%/plugins/gradle/lib/commons-io-1.4.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-base-services-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-base-services-groovy-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-cli-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-core-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-jps-plugin.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-messaging-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-model-core-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-model-groovy-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-native-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-resources-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-tooling-api-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-tooling-extension-api.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-tooling-extension-impl.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle-wrapper-2.5.jar %%IDEA_HOME%%/plugins/gradle/lib/gradle.jar %%IDEA_HOME%%/plugins/gradle/lib/guava-jdk5-17.0.jar %%IDEA_HOME%%/plugins/gradle/lib/jna-3.2.7.jar %%IDEA_HOME%%/plugins/gradle/lib/jsr305-1.3.9.jar %%IDEA_HOME%%/plugins/gradle/lib/kryo-2.22.jar %%IDEA_HOME%%/plugins/gradle/lib/minlog-1.2.jar %%IDEA_HOME%%/plugins/gradle/lib/native-platform-0.10.jar %%IDEA_HOME%%/plugins/gradle/lib/native-platform-freebsd-amd64-0.10.jar %%IDEA_HOME%%/plugins/gradle/lib/native-platform-freebsd-i386-0.10.jar @comment %%IDEA_HOME%%/plugins/gradle/lib/native-platform-linux-amd64-0.10.jar @comment %%IDEA_HOME%%/plugins/gradle/lib/native-platform-linux-i386-0.10.jar @comment %%IDEA_HOME%%/plugins/gradle/lib/native-platform-osx-amd64-0.10.jar @comment %%IDEA_HOME%%/plugins/gradle/lib/native-platform-osx-i386-0.10.jar @comment %%IDEA_HOME%%/plugins/gradle/lib/native-platform-windows-amd64-0.10.jar @comment %%IDEA_HOME%%/plugins/gradle/lib/native-platform-windows-i386-0.10.jar %%IDEA_HOME%%/plugins/gradle/lib/objenesis-1.2.jar %%IDEA_HOME%%/plugins/gradle/lib/reflectasm-1.07.jar %%IDEA_HOME%%/plugins/gradle/lib/resources_en.jar %%IDEA_HOME%%/plugins/hg4idea/lib/hg4idea.jar %%IDEA_HOME%%/plugins/hg4idea/lib/resources_en.jar %%IDEA_HOME%%/plugins/java-decompiler/lib/java-decompiler.jar %%IDEA_HOME%%/plugins/java-i18n/lib/java-i18n.jar %%IDEA_HOME%%/plugins/java-i18n/lib/resources_en.jar %%IDEA_HOME%%/plugins/javaFX/embedder.jar %%IDEA_HOME%%/plugins/javaFX/lib/common-javaFX-plugin.jar %%IDEA_HOME%%/plugins/javaFX/lib/javaFX-jps-plugin.jar %%IDEA_HOME%%/plugins/javaFX/lib/javaFX.jar %%IDEA_HOME%%/plugins/javaFX/lib/resources_en.jar %%IDEA_HOME%%/plugins/junit/lib/idea-junit.jar %%IDEA_HOME%%/plugins/junit/lib/junit-rt.jar %%IDEA_HOME%%/plugins/junit/lib/resources_en.jar %%IDEA_HOME%%/plugins/maven/lib/artifact-resolver-m2.jar %%IDEA_HOME%%/plugins/maven/lib/artifact-resolver-m3.jar %%IDEA_HOME%%/plugins/maven/lib/artifact-resolver-m31.jar %%IDEA_HOME%%/plugins/maven/lib/lucene-core-2.4.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven-jps-plugin.jar %%IDEA_HOME%%/plugins/maven/lib/maven-server-api.jar %%IDEA_HOME%%/plugins/maven/lib/maven.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-impl.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/activation-1.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/archetype-common-2.0-alpha-4-SNAPSHOT.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/commons-beanutils.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/jaxb-api.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/jaxb-impl.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/maven-dependency-tree-1.2.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/mercury-artifact-1.0-alpha-6.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/nexus-indexer-1.2.3.jar %%IDEA_HOME%%/plugins/maven/lib/maven2-server-lib/plexus-utils-1.5.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven2/LICENSE.txt %%IDEA_HOME%%/plugins/maven/lib/maven2/NOTICE.txt %%IDEA_HOME%%/plugins/maven/lib/maven2/README.txt %%IDEA_HOME%%/plugins/maven/lib/maven2/bin/m2.conf %%IDEA_HOME%%/plugins/maven/lib/maven2/bin/mvn %%IDEA_HOME%%/plugins/maven/lib/maven2/bin/mvn.bat %%IDEA_HOME%%/plugins/maven/lib/maven2/bin/mvnDebug %%IDEA_HOME%%/plugins/maven/lib/maven2/bin/mvnDebug.bat %%IDEA_HOME%%/plugins/maven/lib/maven2/boot/classworlds-1.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven2/conf/settings.xml %%IDEA_HOME%%/plugins/maven/lib/maven2/lib/maven-2.2.1-uber.jar %%IDEA_HOME%%/plugins/maven/lib/maven3-server-common.jar %%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/archetype-catalog-2.2.jar %%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/archetype-common-2.2.jar %%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/maven-dependency-tree-1.2.jar %%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/nexus-indexer-3.0.4.jar %%IDEA_HOME%%/plugins/maven/lib/maven3-server-lib/nexus-indexer-artifact-1.0.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/LICENSE.txt %%IDEA_HOME%%/plugins/maven/lib/maven3/NOTICE.txt %%IDEA_HOME%%/plugins/maven/lib/maven3/README.txt %%IDEA_HOME%%/plugins/maven/lib/maven3/bin/m2.conf %%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvn %%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvn.bat %%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvnDebug %%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvnDebug.bat %%IDEA_HOME%%/plugins/maven/lib/maven3/bin/mvnyjp %%IDEA_HOME%%/plugins/maven/lib/maven3/boot/plexus-classworlds-2.4.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/conf/settings.xml %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-api-1.13.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-connector-wagon-1.13.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-impl-1.13.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-spi-1.13.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/aether-util-1.13.1.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/commons-cli-1.2.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/commons-io-2.2.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/commons-lang-2.6.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/ext/README.txt %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-aether-provider-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-artifact-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-compat-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-core-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-embedder-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-model-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-model-builder-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-plugin-api-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-repository-metadata-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-settings-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/maven-settings-builder-3.0.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-cipher-1.7.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-component-annotations-1.5.5.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-interpolation-1.14.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-sec-dispatcher-1.3.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/plexus-utils-2.0.6.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/sisu-guava-0.9.9.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/sisu-guice-3.1.0-no_aop.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/sisu-inject-bean-2.3.0.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/sisu-inject-plexus-2.3.0.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/wagon-file-2.8.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/wagon-http-2.8-shaded.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/wagon-http-shared-2.8.jar %%IDEA_HOME%%/plugins/maven/lib/maven3/lib/wagon-provider-api-2.8.jar %%IDEA_HOME%%/plugins/maven/lib/maven30-server-impl.jar %%IDEA_HOME%%/plugins/maven/lib/maven32-server-impl.jar %%IDEA_HOME%%/plugins/maven/lib/plexus-archiver-2.4.4.jar %%IDEA_HOME%%/plugins/maven/lib/plexus-utils-2.0.6.jar %%IDEA_HOME%%/plugins/maven/lib/resources_en.jar %%IDEA_HOME%%/plugins/maven/lib/wadl-core.jar %%IDEA_HOME%%/plugins/properties/lib/properties.jar %%IDEA_HOME%%/plugins/settings-repository/lib/jackson-annotations-2.5.1.jar %%IDEA_HOME%%/plugins/settings-repository/lib/jackson-core-2.5.1.jar %%IDEA_HOME%%/plugins/settings-repository/lib/jackson-databind-2.5.1.jar %%IDEA_HOME%%/plugins/settings-repository/lib/jgit.jar %%IDEA_HOME%%/plugins/settings-repository/lib/resources_en.jar %%IDEA_HOME%%/plugins/settings-repository/lib/settings-repository.jar %%IDEA_HOME%%/plugins/svn4idea/lib/antlr.jar %%IDEA_HOME%%/plugins/svn4idea/lib/jsch.agentproxy.svnkit-trilead-ssh2.jar %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/ANTLR-LICENSE %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/CHANGES.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/COPYING %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-ANTLR.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-JAVAHL.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-JNA.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-SEQUENCE.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-SQLJET.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE-TRILEAD.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/LICENSE.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/README.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/SEQUENCE-LICENSE %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/SQLJET-LICENSE %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/SQLJET-README.txt %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/TRILEAD-LICENSE %%IDEA_HOME%%/plugins/svn4idea/lib/licenses/changelog.txt %%IDEA_HOME%%/plugins/svn4idea/lib/resources_en.jar %%IDEA_HOME%%/plugins/svn4idea/lib/sequence-library.jar %%IDEA_HOME%%/plugins/svn4idea/lib/sqljet.jar %%IDEA_HOME%%/plugins/svn4idea/lib/sqljetsrc.zip %%IDEA_HOME%%/plugins/svn4idea/lib/svn4idea.jar %%IDEA_HOME%%/plugins/svn4idea/lib/svnkit-javahl.jar %%IDEA_HOME%%/plugins/svn4idea/lib/svnkit-javahl16.zip %%IDEA_HOME%%/plugins/svn4idea/lib/svnkit.jar %%IDEA_HOME%%/plugins/svn4idea/lib/trilead.jar %%IDEA_HOME%%/plugins/svn4idea/lib/trileadsrc.zip %%IDEA_HOME%%/plugins/tasks/lib/axis-1.4.jar %%IDEA_HOME%%/plugins/tasks/lib/axis-jaxrpc-1.4.jar %%IDEA_HOME%%/plugins/tasks/lib/axis-saaj-1.3.jar %%IDEA_HOME%%/plugins/tasks/lib/commons-discovery-0.4.jar %%IDEA_HOME%%/plugins/tasks/lib/jira.jar %%IDEA_HOME%%/plugins/tasks/lib/json-path-0.8.0.jar %%IDEA_HOME%%/plugins/tasks/lib/json-smart-1.1.1.jar %%IDEA_HOME%%/plugins/tasks/lib/tasks-api.jar %%IDEA_HOME%%/plugins/tasks/lib/tasks-core.jar %%IDEA_HOME%%/plugins/tasks/lib/tasks-java.jar %%IDEA_HOME%%/plugins/tasks/lib/wsdl4j-1.4.jar %%IDEA_HOME%%/plugins/terminal/lib/jediterm-pty-2.0.jar %%IDEA_HOME%%/plugins/terminal/lib/jediterm.in %%IDEA_HOME%%/plugins/terminal/lib/resources_en.jar %%IDEA_HOME%%/plugins/terminal/lib/terminal.jar %%IDEA_HOME%%/plugins/testng/lib/jcommander.jar %%IDEA_HOME%%/plugins/testng/lib/resources_en.jar %%IDEA_HOME%%/plugins/testng/lib/testng-plugin.jar %%IDEA_HOME%%/plugins/testng/lib/testng.jar %%IDEA_HOME%%/plugins/uiDesigner/lib/jps/ui-designer-jps-plugin.jar %%IDEA_HOME%%/plugins/uiDesigner/lib/resources_en.jar %%IDEA_HOME%%/plugins/uiDesigner/lib/uiDesigner.jar %%IDEA_HOME%%/plugins/xpath/lib/resources_en.jar %%IDEA_HOME%%/plugins/xpath/lib/rt/xslt-rt.jar %%IDEA_HOME%%/plugins/xpath/lib/xpath.jar %%IDEA_HOME%%/plugins/xslt-debugger/lib/rmi-stubs.jar %%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/saxon.jar %%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/saxon9he.jar %%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/serializer.jar %%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/xalan.jar %%IDEA_HOME%%/plugins/xslt-debugger/lib/rt/xslt-debugger-engine-impl.jar %%IDEA_HOME%%/plugins/xslt-debugger/lib/xslt-debugger-engine.jar %%IDEA_HOME%%/plugins/xslt-debugger/lib/xslt-debugger.jar %%IDEA_HOME%%/redist/annotations-java8.jar man/man1/idea.1.gz share/applications/idea.desktop