Skip to content

Commit 432509d

Browse files
committed
Update pn CLI
1 parent e3337c0 commit 432509d

File tree

1 file changed

+2
-2
lines changed
  • libs/pythonnative/cli

1 file changed

+2
-2
lines changed

libs/pythonnative/cli/pn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def create_android_project(project_name: str, destination: str) -> bool:
3636
:param destination: The directory where the project will be created.
3737
:return: True if the project was created successfully, False otherwise.
3838
"""
39-
android_template_url = "https://github.com/username/android_template/archive/main.zip" # replace with actual URL
39+
android_template_url = "https://github.com/owenthcarey/pythonnative-workspace/blob/main/apps/templates/android_template.zip?raw=true"
4040

4141
# Download and extract the Android template project
4242
download_template_project(android_template_url, destination)
@@ -52,7 +52,7 @@ def create_ios_project(project_name: str, destination: str) -> bool:
5252
:param destination: The directory where the project will be created.
5353
:return: True if the project was created successfully, False otherwise.
5454
"""
55-
ios_template_url = "https://github.com/username/ios_template/archive/main.zip" # replace with actual URL
55+
ios_template_url = "https://github.com/owenthcarey/pythonnative-workspace/blob/main/apps/templates/ios_template.zip?raw=true"
5656

5757
# Download and extract the iOS template project
5858
download_template_project(ios_template_url, destination)

0 commit comments

Comments
 (0)