Skip to content

Commit 3edff54

Browse files
authored
Merge pull request #1 from guamacard/guama
Guama
2 parents 3affdd1 + 63a51bb commit 3edff54

23 files changed

+215
-53
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
/.build
3+
/.index-build
34
/Packages
45
/*.xcodeproj
56
xcuserdata/

.idea/.gitignore

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/amplify-ui-swift-liveness.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AmplifyUILiveness.podspec

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'AmplifyUILiveness'
3+
s.version = '1.0.0'
4+
s.summary = 'AWS Amplify UI Liveness module'
5+
s.homepage = 'https://github.com/aws-amplify/amplify-ui-swift-liveness'
6+
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
7+
s.author = { 'AWS Amplify' => '[email protected]' }
8+
s.source = { :git => 'https://github.com/aws-amplify/amplify-ui-swift-liveness.git', :branch => 'main' }
9+
s.ios.deployment_target = '13.0'
10+
s.source_files = 'Sources/**/*.{swift,h,m}'
11+
s.swift_version = '5.0'
12+
end

HostApp/.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#amplify-do-not-edit-begin
2+
amplify/\#current-cloud-backend
3+
amplify/.config/local-*
4+
amplify/logs
5+
amplify/mock-data
6+
amplify/mock-api-resources
7+
amplify/backend/amplify-meta.json
8+
amplify/backend/.temp
9+
build/
10+
dist/
11+
node_modules/
12+
aws-exports.js
13+
awsconfiguration.json
14+
amplifyconfiguration.json
15+
amplifyconfiguration.dart
16+
amplify-build-config.json
17+
amplify-gradle-config.json
18+
amplifytools.xcconfig
19+
.secret-*
20+
**.sample
21+
#amplify-do-not-edit-end

0 commit comments

Comments
 (0)