forked from takimafr/androidkickstartr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
891 additions
and
963 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
androidkickstartr-core/src/main/resources/libs/ActionBarSherlock/actionbarsherlock/lint.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<lint> | ||
<issue id="ObsoleteLayoutParam" severity="ignore"/> | ||
<issue id="UnusedResources" severity="ignore"/> | ||
<issue id="NewApi" severity="ignore"/> | ||
<issue id="IconDuplicates" severity="ignore"/> | ||
<issue id="IconDuplicatesConfig" severity="ignore"/> | ||
<issue id="IconDensities" severity="ignore"/> | ||
<issue id="ContentDescription" severity="ignore"/> | ||
<issue id="SelectableText" severity="ignore"/> | ||
<issue id="NestedWeights" severity="ignore"/> | ||
<issue id="InefficientWeight" severity="ignore"/> | ||
<issue id="UselessParent" severity="ignore"/> | ||
<issue id="TypographyEllipsis" severity="ignore"/> | ||
<issue id="InlinedApi" severity="ignore"/> | ||
<issue id="DefaultLocale" severity="ignore"/> | ||
<issue id="WrongCall" severity="ignore"/> | ||
<issue id="DuplicateIds" severity="ignore"/> | ||
<issue id="MissingPrefix" severity="ignore"/> | ||
<issue id="UseCompoundDrawables" severity="ignore"/> | ||
<issue id="Overdraw" severity="ignore"/> | ||
<issue id="Registered" severity="ignore"/> | ||
<issue id="ViewConstructor" severity="ignore"/> | ||
</lint> |
257 changes: 123 additions & 134 deletions
257
androidkickstartr-core/src/main/resources/libs/ActionBarSherlock/actionbarsherlock/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,148 +1,137 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>actionbarsherlock</artifactId> | ||
<name>ActionBarSherlock</name> | ||
<packaging>apklib</packaging> | ||
<parent> | ||
<groupId>com.actionbarsherlock</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>4.3.1</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
|
||
<parent> | ||
<groupId>com.actionbarsherlock</groupId> | ||
<artifactId>parent</artifactId> | ||
<version>4.2.0</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<artifactId>actionbarsherlock</artifactId> | ||
<name>ActionBarSherlock</name> | ||
<packaging>apklib</packaging> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.android</groupId> | ||
<artifactId>android</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.android</groupId> | ||
<artifactId>support-v4</artifactId> | ||
</dependency> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.android</groupId> | ||
<artifactId>android</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.android</groupId> | ||
<artifactId>support-v4</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.easytesting</groupId> | ||
<artifactId>fest-assert-core</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.robolectric</groupId> | ||
<artifactId>robolectric</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<testSourceDirectory>test</testSourceDirectory> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
<testSourceDirectory>test</testSourceDirectory> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>com.jayway.maven.plugins.android.generation2</groupId> | ||
<artifactId>android-maven-plugin</artifactId> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<nativeLibrariesDirectory>ignored</nativeLibrariesDirectory> | ||
</configuration> | ||
</plugin> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.jayway.maven.plugins.android.generation2</groupId> | ||
<artifactId>android-maven-plugin</artifactId> | ||
<extensions>true</extensions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>com.google.code.maven-replacer-plugin</groupId> | ||
<artifactId>maven-replacer-plugin</artifactId> | ||
<version>1.4.0</version> | ||
<executions> | ||
<execution> | ||
<phase>process-sources</phase> | ||
<goals> | ||
<goal>replace</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<ignoreMissingFile>false</ignoreMissingFile> | ||
<file>target/generated-sources/r/com/actionbarsherlock/R.java</file> | ||
<outputFile>target/generated-sources/r/com/actionbarsherlock/R.java</outputFile> | ||
<regex>false</regex> | ||
<token>static final int</token> | ||
<value>static int</value> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.google.code.maven-replacer-plugin</groupId> | ||
<artifactId>maven-replacer-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>process-sources</phase> | ||
<goals> | ||
<goal>replace</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<ignoreMissingFile>false</ignoreMissingFile> | ||
<file>target/generated-sources/r/com/actionbarsherlock/R.java</file> | ||
<outputFile>target/generated-sources/r/com/actionbarsherlock/R.java</outputFile> | ||
<regex>false</regex> | ||
<token>static final int</token> | ||
<value>static int</value> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
<configuration> | ||
<configLocation>../checkstyle.xml</configLocation> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>checkstyle</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>attach-artifact</goal> | ||
</goals> | ||
<configuration> | ||
<artifacts> | ||
<artifact> | ||
<type>jar</type> | ||
<file>${project.build.directory}/${project.build.finalName}.jar</file> | ||
</artifact> | ||
</artifacts> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<version>1.7</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>attach-artifact</goal> | ||
</goals> | ||
<configuration> | ||
<artifacts> | ||
<artifact> | ||
<type>jar</type> | ||
<file>${project.build.directory}/${project.build.finalName}.jar</file> | ||
</artifact> | ||
</artifacts> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> | ||
<plugin> | ||
<groupId>org.eclipse.m2e</groupId> | ||
<artifactId>lifecycle-mapping</artifactId> | ||
<version>1.0.0</version> | ||
<configuration> | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId>com.google.code.maven-replacer-plugin</groupId> | ||
<artifactId>maven-replacer-plugin</artifactId> | ||
<versionRange>[1.4.0,)</versionRange> | ||
<goals> | ||
<goal>replace</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<ignore /> | ||
</action> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
</lifecycleMappingMetadata> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
<pluginManagement> | ||
<plugins> | ||
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> | ||
<plugin> | ||
<groupId>org.eclipse.m2e</groupId> | ||
<artifactId>lifecycle-mapping</artifactId> | ||
<version>1.0.0</version> | ||
<configuration> | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId>com.google.code.maven-replacer-plugin</groupId> | ||
<artifactId>maven-replacer-plugin</artifactId> | ||
<versionRange>[1.4.0,)</versionRange> | ||
<goals> | ||
<goal>replace</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<ignore /> | ||
</action> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
</lifecycleMappingMetadata> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</project> |
Binary file removed
BIN
-1.38 KB
...arSherlock/actionbarsherlock/res/drawable-hdpi/abs__dialog_full_holo_dark.9.png
Binary file not shown.
Binary file removed
BIN
-1.5 KB
...rSherlock/actionbarsherlock/res/drawable-hdpi/abs__dialog_full_holo_light.9.png
Binary file not shown.
Binary file added
BIN
+597 Bytes
...ock/actionbarsherlock/res/drawable-hdpi/abs__ic_commit_search_api_holo_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+616 Bytes
...ck/actionbarsherlock/res/drawable-hdpi/abs__ic_commit_search_api_holo_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+278 Bytes
(110%)
...s/libs/ActionBarSherlock/actionbarsherlock/res/drawable-hdpi/abs__ic_search.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.29 KB
...bs/ActionBarSherlock/actionbarsherlock/res/drawable-hdpi/abs__toast_frame.9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-882 Bytes
...arSherlock/actionbarsherlock/res/drawable-mdpi/abs__dialog_full_holo_dark.9.png
Binary file not shown.
Binary file removed
BIN
-1003 Bytes
...rSherlock/actionbarsherlock/res/drawable-mdpi/abs__dialog_full_holo_light.9.png
Binary file not shown.
Binary file added
BIN
+511 Bytes
...ock/actionbarsherlock/res/drawable-mdpi/abs__ic_commit_search_api_holo_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+532 Bytes
...ck/actionbarsherlock/res/drawable-mdpi/abs__ic_commit_search_api_holo_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+839 Bytes
...bs/ActionBarSherlock/actionbarsherlock/res/drawable-mdpi/abs__toast_frame.9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed
BIN
-2.11 KB
...rSherlock/actionbarsherlock/res/drawable-xhdpi/abs__dialog_full_holo_dark.9.png
Binary file not shown.
Binary file removed
BIN
-2.25 KB
...Sherlock/actionbarsherlock/res/drawable-xhdpi/abs__dialog_full_holo_light.9.png
Binary file not shown.
Binary file added
BIN
+703 Bytes
...ck/actionbarsherlock/res/drawable-xhdpi/abs__ic_commit_search_api_holo_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+712 Bytes
...k/actionbarsherlock/res/drawable-xhdpi/abs__ic_commit_search_api_holo_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.91 KB
...s/ActionBarSherlock/actionbarsherlock/res/drawable-xhdpi/abs__toast_frame.9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...rces/libs/ActionBarSherlock/actionbarsherlock/res/layout/abs__action_bar_tab_bar_view.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<com.actionbarsherlock.internal.widget.IcsLinearLayout | ||
<com.actionbarsherlock.internal.widget.TabsLinearLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
style="?attr/actionBarTabBarStyle" | ||
/> | ||
/> |
46 changes: 0 additions & 46 deletions
46
.../resources/libs/ActionBarSherlock/actionbarsherlock/res/layout/abs__dialog_title_holo.xml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.