Skip to content

Commit

Permalink
[INJIMOB-890] deleted pom file (#129)
Browse files Browse the repository at this point in the history
* delete CODE_OF_CONDUCT.md

Signed-off-by: Swati Goel <[email protected]>

* update CONTRIBUTING.md

Signed-off-by: Swati Goel <[email protected]>

* feat (#891): iOS File Manipulation

* feat (#891): iOS File Manipulation

* feat (#890, #891): Add. iOS and Android Artefacts and Git Workflows

* feat (#890): Added Android Example App

* feat (#891): Added iOS Example App

* [INJIMOB-890]: update latest version in readme.

Signed-off-by: Swati Goel <[email protected]>

* [INJIMOB-890]: removed artefacts and workflows

Signed-off-by: Ayushi Dey <[email protected]>

* Revert "[INJIMOB-890]: removed artefacts and workflows"

This reverts commit a037a8d.

* [INJIMOB-890]: removed artefacts and workflows

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-890]: added publish artifact gradle task

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-890]: change indentation of build.gradle

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-890]: added sign and commit plugin in gradle pom generation

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-890]: adding manual trigger

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-890]: setting secrets for publication

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-890]: setting secrets for publication

* [INJIMOB-890]: secrets reflection test

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-890]: removed extra variables

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-891]: added manual trigger for ios build

Signed-off-by: Ayushi Dey <[email protected]>

* [INJIMOB-891]: Add.verifier custom code

Signed-off-by: Abhishek Paul <[email protected]>

* INJIMOB-890: removing pom file

Signed-off-by: Ayushi Dey <[email protected]>

---------

Signed-off-by: Swati Goel <[email protected]>
Signed-off-by: Ayushi Dey <[email protected]>
Signed-off-by: Ayushi Dey <[email protected]>
Signed-off-by: Abhishek Paul <[email protected]>
Co-authored-by: Swati Goel <[email protected]>
Co-authored-by: Ayushi Dey <[email protected]>
Co-authored-by: Abhishek Paul <[email protected]>
  • Loading branch information
4 people authored Jun 3, 2024
1 parent f4637e3 commit 8818584
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 115 deletions.
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.

0 comments on commit 8818584

Please sign in to comment.