Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.78 KB | None | 0 0
  1. [INFO] [INFO] Warning: android.support.v17.leanback.widget.BaseGridView: can't find superclass or interface android.support.v7.widget.RecyclerView
  2. [INFO] [INFO] Warning: android.support.v17.leanback.widget.DetailsOverviewRowPresenter$ViewHolder$4: can't find superclass or interface android.support.v7.widget.RecyclerView$OnScrollListener
  3. [INFO] [INFO] Warning: android.support.v17.leanback.widget.DetailsOverviewSharedElementHelper: can't find superclass or interface android.support.v4.app.SharedElementCallback
  4. [INFO] [INFO] Warning: android.support.v17.leanback.widget.GridLayoutManager: can't find superclass or interface android.support.v7.widget.RecyclerView$LayoutManager
  5. [INFO] [INFO] Warning: android.support.v17.leanback.widget.GridLayoutManager$3: can't find superclass or interface android.support.v7.widget.LinearSmoothScroller
  6. [INFO] [INFO] Warning: android.support.v17.leanback.widget.GridLayoutManager$LayoutParams: can't find superclass or interface android.support.v7.widget.RecyclerView$LayoutParams
  7.  
  8. -keep class com.chartboost.** { *; }
  9.  
  10. -keep class * extends java.util.ListResourceBundle {
  11. protected Object[][] getContents();
  12. }
  13.  
  14. -keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
  15. public static final *** NULL;
  16. }
  17.  
  18. -keepnames @com.google.android.gms.common.annotation.KeepName class *
  19. -keepclassmembernames class * {
  20. @com.google.android.gms.common.annotation.KeepName *;
  21. }
  22.  
  23. -keepnames class * implements android.os.Parcelable {
  24. public static final ** CREATOR;
  25. }
  26.  
  27. <?xml version="1.0" encoding="UTF-8"?>
  28. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  29. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  30. <modelVersion>4.0.0</modelVersion>
  31. <groupId>com.mydomain</groupId>
  32. <artifactId>myapp</artifactId>
  33. <version>1.0.0-SNAPSHOT</version>
  34. <packaging>apk</packaging>
  35. <name>my App</name>
  36.  
  37. <scm>
  38. <connection>scm:svn:https://localhost/svn/repo/myname</connection>
  39. <developerConnection>scm:svn:https://localhost/svn/repo/myname/myapp/trunk</developerConnection>
  40. <url>scm:svn:https://localhost/svn/repo/myname</url>
  41. </scm>
  42.  
  43. <distributionManagement>
  44. <repository>
  45. <id>svnrepo</id>
  46. <url>svn:https://localhost/svn/repo/myname/myapp/releases</url>
  47. </repository>
  48. <snapshotRepository>
  49. <id>svnrepo</id>
  50. <url>svn:https://localhost/svn/repo/myname/myapp/snapshots</url>
  51. </snapshotRepository>
  52. </distributionManagement>
  53.  
  54. <properties>
  55. <android.sdk.path>/opt/android-sdk-linux</android.sdk.path>
  56. <android.keystore>/home/myname/.android/release.keystore</android.keystore>
  57. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  58. </properties>
  59.  
  60. <dependencies>
  61. <!-- LInt Annotations -->
  62. <dependency>
  63. <groupId>com.google.android</groupId>
  64. <artifactId>annotations</artifactId>
  65. <version>4.1.1.4</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.codehaus.jackson</groupId>
  69. <artifactId>jackson-mapper-asl</artifactId>
  70. <version>1.9.13</version>
  71. </dependency>
  72.  
  73. <!-- Non Android Tests --><!-- hamcrest must be before JUnit due to build errors -->
  74. <dependency>
  75. <groupId>org.hamcrest</groupId>
  76. <artifactId>hamcrest-all</artifactId>
  77. <version>1.3</version>
  78. <scope>test</scope>
  79. </dependency>
  80.  
  81. <dependency>
  82. <groupId>org.mockito</groupId>
  83. <artifactId>mockito-all</artifactId>
  84. <version>1.9.5</version>
  85. <scope>test</scope>
  86. </dependency>
  87.  
  88. <dependency>
  89. <groupId>junit</groupId>
  90. <artifactId>junit</artifactId>
  91. <version>4.8.2</version>
  92. <scope>test</scope>
  93. </dependency>
  94.  
  95. <dependency>
  96. <groupId>org.powermock</groupId>
  97. <artifactId>powermock-api-mockito</artifactId>
  98. <version>1.5.1</version>
  99. <scope>test</scope>
  100. </dependency>
  101.  
  102. <dependency>
  103. <groupId>org.powermock</groupId>
  104. <artifactId>powermock-module-junit4</artifactId>
  105. <version>1.5.1</version>
  106. <scope>test</scope>
  107. </dependency>
  108.  
  109. <!-- JUnit has to be before Android, otherwise powermock causes a runtimeexception
  110. "at junit.runner.version.id" -->
  111.  
  112. <dependency>
  113. <groupId>com.google.android</groupId>
  114. <artifactId>android</artifactId>
  115. <version>4.4.2</version>
  116. <scope>provided</scope>
  117. </dependency>
  118.  
  119. <dependency>
  120. <groupId>com.google.android</groupId>
  121. <artifactId>support-v17</artifactId>
  122. <version>r17</version>
  123. </dependency>
  124.  
  125. <dependency>
  126. <groupId>com.nineoldandroids</groupId>
  127. <artifactId>library</artifactId>
  128. <version>2.4.0</version>
  129. </dependency>
  130.  
  131. <dependency>
  132. <groupId>com.google.android.gms</groupId>
  133. <artifactId>play-services</artifactId>
  134. <version>5.0.89</version>
  135. <type>aar</type>
  136. </dependency>
  137.  
  138. <dependency>
  139. <groupId>com.chartboost</groupId>
  140. <artifactId>chartboost</artifactId>
  141. <version>5.0.3</version>
  142. </dependency>
  143.  
  144. </dependencies>
  145.  
  146. <build>
  147. <outputDirectory>target/classes</outputDirectory>
  148. <testOutputDirectory>target/test-classes</testOutputDirectory>
  149. <plugins>
  150. <plugin>
  151. <artifactId>maven-jarsigner-plugin</artifactId>
  152. <version>1.2</version>
  153. <configuration>
  154. <finalName>${project.artifactId}-${project.version}</finalName>
  155. </configuration>
  156. </plugin>
  157. <plugin>
  158. <artifactId>maven-compiler-plugin</artifactId>
  159. <version>2.5.1</version>
  160. <configuration>
  161. <source>1.6</source>
  162. <target>1.6</target>
  163. </configuration>
  164. </plugin>
  165. <plugin>
  166. <artifactId>maven-resources-plugin</artifactId>
  167. <version>2.5</version>
  168. <configuration>
  169. <encoding>${project.build.sourceEncoding}</encoding>
  170. </configuration>
  171. </plugin>
  172. <plugin>
  173. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  174. <artifactId>android-maven-plugin</artifactId>
  175. <version>3.9.0-rc.2</version>
  176. <extensions>true</extensions>
  177. <configuration>
  178. <androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile>
  179. <assetsDirectory>${project.basedir}/assets</assetsDirectory>
  180. <resourceDirectory>${project.basedir}/res</resourceDirectory>
  181. <nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory>
  182. <genDirectory>${project.basedir}/gen</genDirectory>
  183. <sdk>
  184. <platform>9</platform>
  185. <path>${android.sdk.path}</path>
  186. </sdk>
  187. <undeployBeforeDeploy>false</undeployBeforeDeploy>
  188. <proguard>
  189. <skip>false</skip>
  190. <config>proguard.cfg</config>
  191. </proguard>
  192. <proguardOptions>
  193. <proguardOption>-dontshrink</proguardOption>
  194. <proguardOption>-dontoptimize</proguardOption>
  195. </proguardOptions>
  196. <sign>
  197. <debug>${debug}</debug>
  198. </sign>
  199. </configuration>
  200. </plugin>
  201. </plugins>
  202. <pluginManagement>
  203. <plugins>
  204. <!--This plugin's configuration is used to store Eclipse m2e settings
  205. only. It has no influence on the Maven build itself. -->
  206. <plugin>
  207. <groupId>org.eclipse.m2e</groupId>
  208. <artifactId>lifecycle-mapping</artifactId>
  209. <version>1.0.0</version>
  210. <configuration>
  211. <lifecycleMappingMetadata>
  212. <pluginExecutions>
  213. <pluginExecution>
  214. <pluginExecutionFilter>
  215. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  216. <artifactId>android-maven-plugin</artifactId>
  217. <versionRange>[3.9.0-rc.2,)</versionRange>
  218. <goals>
  219. <goal>generate-sources</goal>
  220. <goal>proguard</goal>
  221. </goals>
  222. </pluginExecutionFilter>
  223. <action>
  224. <ignore></ignore>
  225. </action>
  226. </pluginExecution>
  227. </pluginExecutions>
  228. </lifecycleMappingMetadata>
  229. </configuration>
  230. </plugin>
  231. </plugins>
  232. </pluginManagement>
  233. </build>
  234.  
  235. <profiles>
  236. <profile>
  237. <id>devel</id>
  238. <activation>
  239. <activeByDefault>true</activeByDefault>
  240. </activation>
  241. <properties>
  242. <debug>true</debug>
  243. </properties>
  244. </profile>
  245.  
  246. <profile>
  247. <id>release</id>
  248. <properties>
  249. <debug>false</debug>
  250. </properties>
  251. <activation>
  252. <property>
  253. <name>performRelease</name>
  254. <value>true</value>
  255. </property>
  256. </activation>
  257. <build>
  258. <plugins>
  259. <plugin>
  260. <groupId>org.apache.maven.plugins</groupId>
  261. <artifactId>maven-deploy-plugin</artifactId>
  262. <version>2.7</version>
  263. <dependencies>
  264. <dependency>
  265. <groupId>com.google.code.maven-svn-wagon</groupId>
  266. <artifactId>maven-svn-wagon</artifactId>
  267. <version>1.4</version>
  268. </dependency>
  269. </dependencies>
  270. </plugin>
  271. <plugin>
  272. <groupId>org.apache.maven.plugins</groupId>
  273. <artifactId>maven-jarsigner-plugin</artifactId>
  274. <version>1.2</version>
  275. <executions>
  276. <execution>
  277. <id>signing</id>
  278. <goals>
  279. <goal>sign</goal>
  280. </goals>
  281. <phase>package</phase>
  282. <inherited>true</inherited>
  283. <configuration>
  284. <archiveDirectory></archiveDirectory>
  285. <includes>
  286. <include>target/${project.artifactId}-${project.version}.apk</include>
  287. </includes>
  288. <keystore>${android.keystore}</keystore>
  289. <storepass></storepass>
  290. <keypass>${key.password}</keypass>
  291. <alias>${key.alias}</alias>
  292. <arguments>
  293. <argument>-verbose</argument>
  294. <argument>-sigalg</argument>
  295. <argument>MD5withRSA</argument>
  296. <argument>-digestalg</argument>
  297. <argument>SHA1</argument>
  298. </arguments>
  299. </configuration>
  300. </execution>
  301. </executions>
  302. </plugin>
  303. <plugin>
  304. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  305. <artifactId>android-maven-plugin</artifactId>
  306. <inherited>true</inherited>
  307. <configuration>
  308. <zipalign>
  309. <verbose>true</verbose>
  310. <skip>false</skip>
  311. <inputApk>${project.build.directory}/${project.artifactId}-${project.version}.apk</inputApk>
  312. <outputApk>${project.build.directory}/${project.artifactId}-${project.version}-RELEASE.apk</outputApk>
  313. </zipalign>
  314.  
  315. </configuration>
  316. <executions>
  317. <execution>
  318. <id>zipalign</id>
  319. <phase>install</phase>
  320. <goals>
  321. <goal>zipalign</goal>
  322. </goals>
  323. </execution>
  324. </executions>
  325. </plugin>
  326. </plugins>
  327. </build>
  328. </profile>
  329. </profiles>
  330. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement