[Midnightbsd-cvs] mports [21918] trunk/java: add intellij ports
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Wed Sep 28 22:37:55 EDT 2016
Revision: 21918
http://svnweb.midnightbsd.org/mports/?rev=21918
Author: laffer1
Date: 2016-09-28 22:37:55 -0400 (Wed, 28 Sep 2016)
Log Message:
-----------
add intellij ports
Modified Paths:
--------------
trunk/java/Makefile
Added Paths:
-----------
trunk/java/intellij/
trunk/java/intellij/Makefile
trunk/java/intellij/common.mk
trunk/java/intellij/distinfo
trunk/java/intellij/files/
trunk/java/intellij/files/idea.1
trunk/java/intellij/files/idea.desktop.in
trunk/java/intellij/files/idea.in
trunk/java/intellij/files/pkg-message.in
trunk/java/intellij/pkg-descr
trunk/java/intellij/pkg-plist
trunk/java/intellij-fsnotifier/
trunk/java/intellij-fsnotifier/Makefile
trunk/java/intellij-fsnotifier/distinfo
trunk/java/intellij-fsnotifier/pkg-descr
trunk/java/intellij-pty4j/
trunk/java/intellij-pty4j/Makefile
trunk/java/intellij-pty4j/distinfo
trunk/java/intellij-pty4j/pkg-descr
Modified: trunk/java/Makefile
===================================================================
--- trunk/java/Makefile 2016-09-29 02:36:12 UTC (rev 21917)
+++ trunk/java/Makefile 2016-09-29 02:37:55 UTC (rev 21918)
@@ -11,6 +11,9 @@
SUBDIR += diablo-jdk16
SUBDIR += diablo-jre16
SUBDIR += hamcrest
+SUBDIR += intellij
+SUBDIR += intellij-fsnotifier
+SUBDIR += intellij-pty4j
SUBDIR += jaf
SUBDIR += jai
SUBDIR += jakarta-bcel
Added: trunk/java/intellij/Makefile
===================================================================
--- trunk/java/intellij/Makefile (rev 0)
+++ trunk/java/intellij/Makefile 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,67 @@
+# Created by: Tobias Kortkamp <t at tobik.me>
+# $FreeBSD: head/java/intellij/Makefile 420699 2016-08-23 15:21:48Z bsam $
+# $MidnightBSD$
+
+# Based on the devel/intellij port from OpenBSD by
+# Vadim Zhukov <zhuk at openbsd.org>
+
+PORTNAME= intellij
+PORTVERSION= 2016.2.2
+CATEGORIES= java devel
+MASTER_SITES= https://download.jetbrains.com/idea/ \
+ http://download.jetbrains.com/idea/
+DISTNAME= ideaIC-${PORTVERSION}
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= IntelliJ IDEA Community Edition
+
+LICENSE= apache2
+
+RUN_DEPENDS= intellij-fsnotifier>0:${PORTSDIR}/java/intellij-fsnotifier \
+ intellij-pty4j>0:${PORTSDIR}/java/intellij-pty4j
+
+USE_JAVA= yes
+JAVA_VERSION= 1.7+
+
+NO_ARCH= yes
+NO_BUILD= yes
+
+WRKDIST= ${WRKDIR}/idea-IC-162.1628.40
+
+.include "common.mk"
+
+PLIST_SUB+= IDEA_HOME=${IDEA_HOME_REL}
+SUB_FILES+= idea idea.desktop pkg-message
+SUB_LIST+= IDEA_HOME=${IDEA_HOME}
+
+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, they are replaced
+# by java/intellij-pty4j
+ @${RM} -r ${STAGEDIR}${IDEA_HOME}/lib/libpty
+ @${RM} -r ${STAGEDIR}${IDEA_HOME}/jre/jre
+ ${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
+# TODO: Remove and enable fsnotifier when devel/libinotify is fixed
+# Disable filewatcher warning message on IDEA startup
+ ${ECHO} "idea.filewatcher.disabled=true" >> ${STAGEDIR}${IDEA_HOME}/bin/idea.properties
+# Use fsnotifier replacement provided by java/intellij-fsnotifier
+# ${ECHO} "idea.filewatcher.executable.path=${IDEA_HOME}/bin/fsnotifier" >> ${STAGEDIR}${IDEA_HOME}/bin/idea.properties
+
+.include <bsd.port.mk>
Property changes on: trunk/java/intellij/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij/common.mk
===================================================================
--- trunk/java/intellij/common.mk (rev 0)
+++ trunk/java/intellij/common.mk 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,6 @@
+# $FreeBSD: head/java/intellij/common.mk 409684 2016-02-27 19:54:46Z pi $
+
+# Common settings for the java/intellij* ports
+
+IDEA_HOME=${PREFIX}/${IDEA_HOME_REL}
+IDEA_HOME_REL=intellij
Property changes on: trunk/java/intellij/common.mk
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij/distinfo
===================================================================
--- trunk/java/intellij/distinfo (rev 0)
+++ trunk/java/intellij/distinfo 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1471955654
+SHA256 (ideaIC-2016.2.2.tar.gz) = 7cedd04b0a57ef5d004fd9e7fc0550c3a4b7564f74e9ed67d81141640e15a424
+SIZE (ideaIC-2016.2.2.tar.gz) = 336176658
Property changes on: trunk/java/intellij/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij/files/idea.1
===================================================================
--- trunk/java/intellij/files/idea.1 (rev 0)
+++ trunk/java/intellij/files/idea.1 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,17 @@
+.\" $OpenBSD: mdoc.template,v 1.10 2007/05/31 22:10:19 jmc Exp $
+.Dd $Mdocdate: April 9 2010 $
+.Dt IDEA 1
+.Os
+.Sh NAME
+.Nm idea
+.Nd launch IntelliJ IDEA Java Integrated Development Environment
+.Sh SYNOPSIS
+.Nm
+.Op jvm-args
+.Sh DESCRIPTION
+.Nm
+starts up the IntelliJ IDEA Community Edition Java Integrated
+Development Environment.
+.Sh SEE ALSO
+The web site
+http://www.jetbrains.com/idea/.
Property changes on: trunk/java/intellij/files/idea.1
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij/files/idea.desktop.in
===================================================================
--- trunk/java/intellij/files/idea.desktop.in (rev 0)
+++ trunk/java/intellij/files/idea.desktop.in 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Version=1.0
+Encoding=UTF-8
+Type=Application
+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;
Property changes on: trunk/java/intellij/files/idea.desktop.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij/files/idea.in
===================================================================
--- trunk/java/intellij/files/idea.in (rev 0)
+++ trunk/java/intellij/files/idea.in 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec "%%IDEA_HOME%%/bin/idea.sh" $@
Property changes on: trunk/java/intellij/files/idea.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij/files/pkg-message.in
===================================================================
--- trunk/java/intellij/files/pkg-message.in (rev 0)
+++ trunk/java/intellij/files/pkg-message.in 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,12 @@
+There is experimental native (faster) file watching support which is
+disabled by default. Currently there are problems with watching large
+trees. To enable edit %%IDEA_HOME%%/bin/idea.properties and append
+
+ idea.filewatcher.disabled=false
+ idea.filewatcher.executable.path=%%IDEA_HOME%%/bin/fsnotifier
+
+Only enable fsnotifier if your projects have < 600 files.
+
+At systems which use links for /usr/home/user or /home/user apparently
+IDEA finds two different VCS roots while trying to integrate with Git.
+Please, use as a VCS root only one of them.
Property changes on: trunk/java/intellij/files/pkg-message.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij/pkg-descr
===================================================================
--- trunk/java/intellij/pkg-descr (rev 0)
+++ trunk/java/intellij/pkg-descr 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,14 @@
+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/
Property changes on: trunk/java/intellij/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij/pkg-plist
===================================================================
--- trunk/java/intellij/pkg-plist (rev 0)
+++ trunk/java/intellij/pkg-plist 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,1688 @@
+bin/idea
+man/man1/idea.1.gz
+share/applications/idea.desktop
+%%IDEA_HOME%%/Install-Linux-tar.txt
+%%IDEA_HOME%%/LICENSE.txt
+%%IDEA_HOME%%/NOTICE.txt
+%%IDEA_HOME%%/bin/appletviewer.policy
+%%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
+%%IDEA_HOME%%/bin/log.xml
+%%IDEA_HOME%%/build.txt
+%%IDEA_HOME%%/idea.png
+%%IDEA_HOME%%/jre/lib/tools.jar
+%%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/automaton.jar
+%%IDEA_HOME%%/lib/batik-all.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.5.2.jar
+%%IDEA_HOME%%/lib/extensions.jar
+%%IDEA_HOME%%/lib/external-system-rt.jar
+%%IDEA_HOME%%/lib/fluent-hc-4.4.1.jar
+%%IDEA_HOME%%/lib/forms_rt.jar
+%%IDEA_HOME%%/lib/groovy-all-2.4.6.jar
+%%IDEA_HOME%%/lib/gson-2.5.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.53.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/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/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.1.Final.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.7.1.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/sqlite-jdbc-3.6.20.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-ext.jar
+%%IDEA_HOME%%/lib/xml-apis.jar
+%%IDEA_HOME%%/lib/xmlgraphics-commons-1.5.jar
+%%IDEA_HOME%%/lib/xmlrpc-2.0.jar
+%%IDEA_HOME%%/lib/xpp3-1.1.4-min.jar
+%%IDEA_HOME%%/lib/xstream-1.4.8.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/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/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-extensions-compiler.jar
+%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-ant.jar
+%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-build-common-test.jar
+%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-build-common.jar
+%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-compiler.jar
+%%IDEA_HOME%%/plugins/Kotlin/kotlinc/lib/kotlin-daemon-client.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/kotlin-test.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/android-lint.jar
+%%IDEA_HOME%%/plugins/Kotlin/lib/javax.inject.jar
+%%IDEA_HOME%%/plugins/Kotlin/lib/jps/kotlin-jps-plugin.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/kotlin-plugin.jar
+%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-reflect.jar
+%%IDEA_HOME%%/plugins/Kotlin/lib/kotlin-runtime.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/antlr4-annotations-4.5.jar
+%%IDEA_HOME%%/plugins/android/lib/antlr4-runtime-4.5.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-2.0.0-alpha7.jar
+%%IDEA_HOME%%/plugins/android/lib/common.jar
+%%IDEA_HOME%%/plugins/android/lib/commons-compress-1.0.jar
+%%IDEA_HOME%%/plugins/android/lib/commons-io-2.4.jar
+%%IDEA_HOME%%/plugins/android/lib/data-binding.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_5x/land_back.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/land_fore.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/land_shadow.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/layout
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/port_back.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/port_fore.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_5x/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_6p/land_back.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/land_fore.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/land_shadow.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/layout
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/port_back.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/port_fore.png
+%%IDEA_HOME%%/plugins/android/lib/device-art-resources/nexus_6p/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/jgraphx-3.4.0.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/juniversalchardet-1.0.3.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/repository.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/AndroidManifestPermissions.xml
+%%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/BasicActivity/globals.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/recipe.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/recipe_fragment.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/root/res/layout/activity_fragment_container.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/root/res/layout/fragment_simple.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/SimpleActivity.java.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/root/src/app_package/SimpleActivityFragment.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/template.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/template_basic_activity.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/BasicActivity/template_basic_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/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/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.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/FullscreenActivity/root/src/app_package/FullscreenActivity.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/GoogleMapsWearActivity/globals.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/recipe.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/AndroidManifest.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/AndroidManifestPermissions.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/debugRes/values/google_maps_api.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/releaseRes/values/google_maps_api.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/res/layout/activity_map.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/res/values/strings.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/root/src/app_package/MapActivity.java.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/template.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/GoogleMapsWearActivity/template_thumb.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/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_item_detail.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/activity_item_list_app_bar.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_detail.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_list.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/fragment_item_list_twopane.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/layout/item_list_content.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values-w900dp/refs.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/MasterDetailFlow/root/res/values/dimens.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/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/build.gradle.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_camera.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_gallery.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_manage.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_send.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_share.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable-v21/ic_menu_slideshow.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/drawable/side_nav_bar.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/layout/navigation_header.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/layout/navigation_view.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/menu/drawer.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/menu/main.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/values/dimens.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/values/drawables.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/NavigationDrawerActivity/root/res-buildApi22/values/strings.xml.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-buildApi22/app_package/DrawerActivity.java.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/ScrollActivity/globals.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/recipe.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/layout/app_bar.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/layout/simple.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/values/dimens.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/res/values/strings.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/root/src/app_package/ScrollActivity.java.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/template.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/ScrollActivity/template_scroll_activity.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/res/drawable-hdpi/ic_info_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-hdpi/ic_notifications_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-hdpi/ic_sync_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-mdpi/ic_info_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-mdpi/ic_notifications_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-mdpi/ic_sync_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-v21/ic_info_black_24dp.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-v21/ic_notifications_black_24dp.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-v21/ic_sync_black_24dp.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xhdpi/ic_info_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xhdpi/ic_notifications_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xhdpi/ic_sync_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxhdpi/ic_info_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxhdpi/ic_notifications_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxhdpi/ic_sync_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxxhdpi/ic_info_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxxhdpi/ic_notifications_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/drawable-xxxhdpi/ic_sync_black_24dp.png
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/SettingsActivity/root/res/values/pref_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/AppCompatPreferenceActivity.java.ftl
+%%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/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/app_bar_activity.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/activities/common/common_globals.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_app_bar.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_dummy_content.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_manifest.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_no_actionbar.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_simple.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_simple_dimens.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/recipe_simple_menu.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/AndroidManifest.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/layout/app_bar.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/layout/simple.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/menu/simple_menu.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values-v21/no_actionbar_styles_v21.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values-w820dp/simple_dimens.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/app_bar_dimens.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/manifest_strings.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/no_actionbar_styles.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/simple_dimens.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/res/values/simple_menu_strings.xml.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/root/src/app_package/dummy/DummyContent.java.ftl
+%%IDEA_HOME%%/plugins/android/lib/templates/activities/common/wear_common_globals.xml.ftl
+%%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/template.xml
+%%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-anydpi/test.svg
+%%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/colors.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_list.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/layout/item_list_content.xml
+%%IDEA_HOME%%/plugins/android/lib/templates/other/ListFragment/root/res/values/dimens.xml
+%%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/RecyclerViewAdapter.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/AndroidManifestPermissions.xml
+%%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/android/lib/truth-0.28.jar
+%%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-2.2.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-base-services-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-base-services-groovy-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-cli-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-core-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-jps-plugin.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-messaging-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-model-core-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-model-groovy-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-native-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-resources-2.13.jar
+%%IDEA_HOME%%/plugins/gradle/lib/gradle-tooling-api-2.13.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.13.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
+%%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/lib/SceneBuilderKit-8.1.1.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-jupiter-engine-5.0.0-M1.jar
+%%IDEA_HOME%%/plugins/junit/lib/junit-platform-commons-1.0.0-M1.jar
+%%IDEA_HOME%%/plugins/junit/lib/junit-platform-engine-1.0.0-M1.jar
+%%IDEA_HOME%%/plugins/junit/lib/junit-platform-launcher-1.0.0-M1.jar
+%%IDEA_HOME%%/plugins/junit/lib/junit-platform-runner-1.0.0-M1.jar
+%%IDEA_HOME%%/plugins/junit/lib/junit-rt.jar
+%%IDEA_HOME%%/plugins/junit/lib/junit-vintage-engine-4.12.0-M1.jar
+%%IDEA_HOME%%/plugins/junit/lib/junit5-rt.jar
+%%IDEA_HOME%%/plugins/junit/lib/opentest4j-1.0.0-M1.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.7.1.jar
+%%IDEA_HOME%%/plugins/settings-repository/lib/jackson-core-2.7.1.jar
+%%IDEA_HOME%%/plugins/settings-repository/lib/jackson-databind-2.7.1-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.2.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%%/plugins/yaml/lib/resources_en.jar
+%%IDEA_HOME%%/plugins/yaml/lib/yaml.jar
+%%IDEA_HOME%%/redist/annotations-java8.jar
Property changes on: trunk/java/intellij/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij-fsnotifier/Makefile
===================================================================
--- trunk/java/intellij-fsnotifier/Makefile (rev 0)
+++ trunk/java/intellij-fsnotifier/Makefile 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,34 @@
+# Created by: Tobias Kortkamp <t at tobik.me>
+# $FreeBSD: head/java/intellij-fsnotifier/Makefile 412347 2016-04-01 14:08:37Z mat $
+# $MidnightBSD$
+
+PORTNAME= intellij-fsnotifier
+PORTVERSION= 20160221
+CATEGORIES= java devel
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= Replacement for IntelliJ's fsnotifier
+
+LICENSE= apache2
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS= libinotify.so:${PORTSDIR}/devel/libinotify
+
+USE_GITHUB= yes
+GH_ACCOUNT= idea4bsd
+GH_PROJECT= fsnotifier
+GH_TAGNAME= a04fbff6e21d58fea7a3ed2a6a21e53cbef4b7af
+
+WRKSRC= ${WRKDIR}/fsnotifier-${GH_TAGNAME}
+
+USES= compiler:c11
+
+.include "${.CURDIR}/../intellij/common.mk"
+
+PLIST_FILES= intellij/bin/fsnotifier
+
+do-install:
+ ${MKDIR} ${STAGEDIR}${IDEA_HOME}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/fsnotifier ${STAGEDIR}${IDEA_HOME}/bin
+
+.include <bsd.port.mk>
Property changes on: trunk/java/intellij-fsnotifier/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij-fsnotifier/distinfo
===================================================================
--- trunk/java/intellij-fsnotifier/distinfo (rev 0)
+++ trunk/java/intellij-fsnotifier/distinfo 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,2 @@
+SHA256 (intellij-fsnotifier-20160221_GH0.tar.gz) = 03e217ea5aba24f0ad89c868e4b680f6ec517bcfb35132e5b7a961e0a2505396
+SIZE (intellij-fsnotifier-20160221_GH0.tar.gz) = 12520
Property changes on: trunk/java/intellij-fsnotifier/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij-fsnotifier/pkg-descr
===================================================================
--- trunk/java/intellij-fsnotifier/pkg-descr (rev 0)
+++ trunk/java/intellij-fsnotifier/pkg-descr 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,6 @@
+The fsnotifier is used by IntelliJ for detecting file changes. This
+version supports FreeBSD and OpenBSD via libinotify and is a
+replacement for the bundled Linux-only version coming with the
+IntelliJ IDEA Community Edition.
+
+WWW: https://github.com/idea4bsd/fsnotifier/
Property changes on: trunk/java/intellij-fsnotifier/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij-pty4j/Makefile
===================================================================
--- trunk/java/intellij-pty4j/Makefile (rev 0)
+++ trunk/java/intellij-pty4j/Makefile 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,60 @@
+# Created by: Tobias Kortkamp <t at tobik.me>
+# $FreeBSD: head/java/intellij-pty4j/Makefile 415356 2016-05-16 19:07:06Z bsam $
+# $MidnightBSD$
+
+PORTNAME= intellij-pty4j
+PORTVERSION= 0.5
+PORTREVISION= 1
+CATEGORIES= java devel
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= FreeBSD-compatible replacement for IntelliJ's bundled Pty4J
+
+LICENSE= epl
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USE_GITHUB= yes
+GH_ACCOUNT= idea4bsd
+GH_PROJECT= pty4j
+GH_TAGNAME= 5d29b891bca0ddf122fc51e3ce066fe421b47b54
+
+WRKSRC= ${WRKDIR}/${GH_PROJECT}-${GH_TAGNAME}
+
+USES= gmake
+
+.include "${.CURDIR}/../intellij/common.mk"
+
+.include <bsd.mport.options.mk>
+
+# 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
+PLIST_FILES+= ${IDEA_HOME_REL}/lib/libpty/freebsd/${PTY4J_ARCH}/libpty.so
+.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:
+.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}/
+.endif
+
+.include <bsd.port.mk>
Property changes on: trunk/java/intellij-pty4j/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij-pty4j/distinfo
===================================================================
--- trunk/java/intellij-pty4j/distinfo (rev 0)
+++ trunk/java/intellij-pty4j/distinfo 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,2 @@
+SHA256 (intellij-pty4j-0.5_GH0.tar.gz) = c931f367534d1d88643a19a15c77e0948b8a146d43dba8af0b89fe0b020ff393
+SIZE (intellij-pty4j-0.5_GH0.tar.gz) = 4858191
Property changes on: trunk/java/intellij-pty4j/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/java/intellij-pty4j/pkg-descr
===================================================================
--- trunk/java/intellij-pty4j/pkg-descr (rev 0)
+++ trunk/java/intellij-pty4j/pkg-descr 2016-09-29 02:37:55 UTC (rev 21918)
@@ -0,0 +1,3 @@
+FreeBSD-compatible replacement for IntelliJ's bundled Pty4J
+
+WWW: https://github.com/traff/pty4j/
Property changes on: trunk/java/intellij-pty4j/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list