Skip to content

Commit 241ef34

Browse files
author
Camden Fullmer
committed
Converted to a project that includes a library and sample to be opened in AS.
1 parent ec332d3 commit 241ef34

File tree

788 files changed

+504
-233
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

788 files changed

+504
-233
lines changed

Diff for: .gitignore

+21-213
Original file line numberDiff line numberDiff line change
@@ -1,221 +1,29 @@
1-
#################
2-
## Eclipse
3-
#################
1+
# Built application files
2+
*.apk
3+
*.ap_
44

5-
*.pydevproject
6-
.project
7-
.metadata
8-
bin/
9-
tmp/
10-
*.tmp
11-
*.bak
12-
*.swp
13-
*~.nib
14-
local.properties
15-
.classpath
16-
.settings/
17-
.loadpath
18-
19-
#other eclipse
20-
gen/
21-
res/
22-
proguard-project.txt
23-
project.properties
24-
25-
# External tool builders
26-
.externalToolBuilders/
27-
28-
# Locally stored "Eclipse launch configurations"
29-
*.launch
30-
31-
# CDT-specific
32-
.cproject
33-
34-
# PDT-specific
35-
.buildpath
36-
37-
38-
#################
39-
## Visual Studio
40-
#################
41-
42-
## Ignore Visual Studio temporary files, build results, and
43-
## files generated by popular Visual Studio add-ons.
44-
45-
# User-specific files
46-
*.suo
47-
*.user
48-
*.sln.docstates
49-
50-
# Build results
51-
52-
[Dd]ebug/
53-
[Rr]elease/
54-
x64/
55-
build/
56-
[Bb]in/
57-
[Oo]bj/
58-
59-
# MSTest test Results
60-
[Tt]est[Rr]esult*/
61-
[Bb]uild[Ll]og.*
62-
63-
*_i.c
64-
*_p.c
65-
*.ilk
66-
*.meta
67-
*.obj
68-
*.pch
69-
*.pdb
70-
*.pgc
71-
*.pgd
72-
*.rsp
73-
*.sbr
74-
*.tlb
75-
*.tli
76-
*.tlh
77-
*.tmp
78-
*.tmp_proj
79-
*.log
80-
*.vspscc
81-
*.vssscc
82-
.builds
83-
*.pidb
84-
*.log
85-
*.scc
86-
87-
# Visual C++ cache files
88-
ipch/
89-
*.aps
90-
*.ncb
91-
*.opensdf
92-
*.sdf
93-
*.cachefile
94-
95-
# Visual Studio profiler
96-
*.psess
97-
*.vsp
98-
*.vspx
99-
100-
# Guidance Automation Toolkit
101-
*.gpState
102-
103-
# ReSharper is a .NET coding add-in
104-
_ReSharper*/
105-
*.[Rr]e[Ss]harper
106-
107-
# TeamCity is a build add-in
108-
_TeamCity*
109-
110-
# DotCover is a Code Coverage Tool
111-
*.dotCover
5+
# Files for the dex VM
6+
*.dex
1127

113-
# NCrunch
114-
*.ncrunch*
115-
.*crunch*.local.xml
116-
117-
# Installshield output folder
118-
[Ee]xpress/
119-
120-
# DocProject is a documentation generator add-in
121-
DocProject/buildhelp/
122-
DocProject/Help/*.HxT
123-
DocProject/Help/*.HxC
124-
DocProject/Help/*.hhc
125-
DocProject/Help/*.hhk
126-
DocProject/Help/*.hhp
127-
DocProject/Help/Html2
128-
DocProject/Help/html
129-
130-
# Click-Once directory
131-
publish/
132-
133-
# Publish Web Output
134-
*.Publish.xml
135-
*.pubxml
136-
137-
# NuGet Packages Directory
138-
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
139-
#packages/
140-
141-
# Windows Azure Build Output
142-
csx
143-
*.build.csdef
144-
145-
# Windows Store app package directory
146-
AppPackages/
147-
148-
# Others
149-
sql/
150-
*.Cache
151-
ClientBin/
152-
[Ss]tyle[Cc]op.*
153-
~$*
154-
*~
155-
*.dbmdl
156-
*.[Pp]ublish.xml
157-
*.pfx
158-
*.publishsettings
159-
160-
# RIA/Silverlight projects
161-
Generated_Code/
162-
163-
# Backup & report files from converting an old project file to a newer
164-
# Visual Studio version. Backup files are not needed, because we have git ;-)
165-
_UpgradeReport_Files/
166-
Backup*/
167-
UpgradeLog*.XML
168-
UpgradeLog*.htm
169-
170-
# SQL Server files
171-
App_Data/*.mdf
172-
App_Data/*.ldf
173-
174-
#############
175-
## Windows detritus
176-
#############
177-
178-
# Windows image file caches
179-
Thumbs.db
180-
ehthumbs.db
181-
182-
# Folder config file
183-
Desktop.ini
184-
185-
# Recycle Bin used on file shares
186-
$RECYCLE.BIN/
187-
188-
# Mac crap
189-
.DS_Store
8+
# Java class files
9+
*.class
19010

11+
# Generated files
12+
bin/
13+
gen/
19114

192-
#############
193-
## Python
194-
#############
15+
# Local configuration file (sdk path, etc)
16+
local.properties
19517

196-
*.py[co]
18+
# IntelliJ IDEA
19+
.idea/
20+
*.iml
21+
*.iws
22+
*.ipr
19723

198-
# Packages
199-
*.egg
200-
*.egg-info
201-
dist/
24+
# Gradle
25+
.gradle
20226
build/
203-
eggs/
204-
parts/
205-
var/
206-
sdist/
207-
develop-eggs/
208-
.installed.cfg
209-
210-
# Installer logs
211-
pip-log.txt
212-
213-
# Unit test / coverage reports
214-
.coverage
215-
.tox
216-
217-
#Translations
218-
*.mo
21927

220-
#Mr Developer
221-
.mr.developer.cfg
28+
# OS X
29+
.DS_Store

Diff for: PdfBoxAndroid/LICENSE.txt renamed to LICENSE.txt

File renamed without changes.

Diff for: PdfBoxAndroid/NOTICE.txt renamed to NOTICE.txt

File renamed without changes.

Diff for: PdfBoxAndroid/.gitignore

-2
This file was deleted.

Diff for: PdfBoxAndroid/AndroidManifest.xml

-18
This file was deleted.

Diff for: PdfBoxAndroid/libs/core-1.51.0.0.jar

-2.24 MB
Binary file not shown.

Diff for: PdfBoxAndroid/libs/pkix-1.51.0.0.jar

-679 KB
Binary file not shown.

Diff for: PdfBoxAndroid/libs/prov-1.51.0.0.jar

-1.12 MB
Binary file not shown.

Diff for: build.gradle

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
3+
buildscript {
4+
repositories {
5+
jcenter()
6+
}
7+
dependencies {
8+
classpath 'com.android.tools.build:gradle:1.0.1'
9+
}
10+
}
11+
12+
allprojects {
13+
version = VERSION_NAME
14+
15+
repositories {
16+
jcenter()
17+
}
18+
}

Diff for: gradle.properties

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Project-wide Gradle settings.
2+
3+
# IDE (e.g. Android Studio) users:
4+
# Settings specified in this file will override any Gradle settings
5+
# configured through the IDE.
6+
7+
# For more details on how to configure your build environment visit
8+
# http://www.gradle.org/docs/current/userguide/build_environment.html
9+
10+
# Specifies the JVM arguments used for the daemon process.
11+
# The setting is particularly useful for tweaking memory settings.
12+
# Default value: -Xmx10248m -XX:MaxPermSize=256m
13+
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14+
15+
# When configured, Gradle will run in incubating parallel mode.
16+
# This option should only be used with decoupled projects. More details, visit
17+
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18+
# org.gradle.parallel=true
19+
20+
VERSION_NAME=1.8.8
21+
VERSION_CODE=1
22+
23+
ANDROID_BUILD_MIN_SDK_VERSION=7
24+
ANDROID_BUILD_TARGET_SDK_VERSION=21
25+
ANDROID_BUILD_SDK_VERSION=21
26+
ANDROID_BUILD_TOOLS_VERSION=21.1.2

Diff for: gradle/wrapper/gradle-wrapper.jar

48.7 KB
Binary file not shown.

Diff for: gradle/wrapper/gradle-wrapper.properties

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Mon Nov 24 12:24:27 CET 2014
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-all.zip

0 commit comments

Comments
 (0)