Guest User

Untitled

a guest
Jan 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. LinkedHashMap.Entry<String, Object> test;
  2.  
  3. <?xml version="1.0" encoding="UTF-8"?>
  4.  
  5. <groupId>com.xxx.android</groupId>
  6. <artifactId>test</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>apk</packaging>
  9. <name>test</name>
  10.  
  11. <dependencies>
  12.  
  13. <dependency>
  14. <groupId>com.google.android</groupId>
  15. <artifactId>android</artifactId>
  16. <version>4.1.1.4</version>
  17. <scope>provided</scope>
  18. </dependency>
  19. </dependencies>
  20.  
  21. <build>
  22. <sourceDirectory>src</sourceDirectory>
  23. <plugins>
  24. <plugin>
  25. <groupId>com.jayway.maven.plugins.android.generation2</groupId>
  26. <artifactId>android-maven-plugin</artifactId>
  27. <version>3.3.2</version>
  28. <extensions>true</extensions>
  29. <configuration>
  30. <sdk>
  31. <!-- platform or api level (api level 4 = platform 1.6)-->
  32. <platform>11</platform>
  33. </sdk>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>2.5.1</version>
  40. <configuration>
  41. <source>1.6</source>
  42. <target>1.6</target>
  43. </configuration>
  44. </plugin>
  45. </plugins>
  46. </build>
Add Comment
Please, Sign In to add comment