Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INJIMOB-890] deleted pom file #129

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b0e63d2
delete CODE_OF_CONDUCT.md
swatigoel Feb 26, 2024
11bd60b
update CONTRIBUTING.md
swatigoel Feb 26, 2024
7ddec42
feat (#891): iOS File Manipulation
Mar 29, 2024
f128de7
feat (#891): iOS File Manipulation
Mar 29, 2024
e6bc7e0
feat (#890, #891): Add. iOS and Android Artefacts and Git Workflows
Mar 29, 2024
c57fd84
feat (#890): Added Android Example App
Mar 29, 2024
8b0a6fd
feat (#891): Added iOS Example App
Mar 29, 2024
a583760
Merge branch 'mosip:develop' into develop
swatigoel Apr 18, 2024
d3bd3ca
[INJIMOB-890]: update latest version in readme.
swatigoel Apr 18, 2024
d6f30f0
Merge branch 'mosip:develop' into develop
swatigoel Apr 23, 2024
a037a8d
[INJIMOB-890]: removed artefacts and workflows
AyushiDey Apr 23, 2024
f56c292
Revert "[INJIMOB-890]: removed artefacts and workflows"
AyushiDey Apr 23, 2024
acf005a
[INJIMOB-890]: removed artefacts and workflows
AyushiDey Apr 23, 2024
adddd25
[INJIMOB-890]: added publish artifact gradle task
AyushiDey Apr 23, 2024
c17f68e
[INJIMOB-890]: change indentation of build.gradle
AyushiDey Apr 23, 2024
f071d87
[INJIMOB-890]: added sign and commit plugin in gradle pom generation
AyushiDey Apr 23, 2024
784af4c
Merge branch 'develop' into develop
AyushiDey Apr 23, 2024
5dcb2d2
[INJIMOB-890]: adding manual trigger
AyushiDey Apr 24, 2024
6ec04c1
[INJIMOB-890]: setting secrets for publication
AyushiDey Apr 24, 2024
ceb8615
[INJIMOB-890]: setting secrets for publication
AyushiDey Apr 24, 2024
3c38f9c
[INJIMOB-890]: secrets reflection test
AyushiDey Apr 24, 2024
fae3706
[INJIMOB-890]: removed extra variables
AyushiDey Apr 24, 2024
406431c
Merge branch 'mosip:develop' into develop
swatigoel Apr 24, 2024
cca2064
[INJIMOB-891]: added manual trigger for ios build
AyushiDey Apr 24, 2024
8307fef
[INJIMOB-891]: Add.verifier custom code
abhip2565 Apr 30, 2024
1830d88
Merge branch 'mosip:develop' into develop
swatigoel May 2, 2024
c2652e7
INJIMOB-890: removing pom file
AyushiDey May 15, 2024
c2de1bf
Merge branch 'develop' into INJIMOB-890-inji-kotlin-tuvali-artifact
swatigoel Jun 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .github/workflows/ios-artifact-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,28 @@ name: iOS Artifact Build

on:
workflow_dispatch:
inputs:
message:
description: 'Message for manually triggering'
required: false
default: 'Triggered for Updates'
type: string
push:
branches:
- release*
- master
- develop*

jobs:
build:
runs-on: macos-latest
permissions:
contents: write # Grants permission to push code and manage releases
pull-requests: write # Grants permission to write pull requests

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'

- name: Create Library Folder and Create Swift Library
run: |
cd ./artifacts/swift-artifact/
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ repositories {
if (!found) {
throw new GradleException(
"${project.name}: unable to locate React Native android sources. " +
"Ensure you have you installed React Native as a dependency in your project and try again."
"Ensure you have you installed React Native as a dependency in your project and try again."
)
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import Foundation

@objc(Verifier)
class Verifier: NSObject {

func getModuleName(completion: @escaping ([String]) -> Void) {
DispatchQueue.global(qos: .userInitiated).async {
completion(["iOS Verifier"])
}
}


@objc
static func requiresMainQueueSetup() -> Bool {
return true
}

@objc
func constantsToExport() -> [AnyHashable: Any] {
return [
"name": "verifier",
"platform": "ios"
]
}
}
108 changes: 0 additions & 108 deletions pom.xml

This file was deleted.

Loading