Skip to content

Commit 403ea8d

Browse files
author
osfunapps
committed
fixed modules dir
1 parent 6c73e61 commit 403ea8d

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Install via pip:
1616
## Usage
1717
From Python:
1818

19-
import os_android_files_injector.AppFilesInjector as fi
19+
import os_android_files_injector.app_files_injector as fi
2020

2121
fi.run('/path/to/android/project',
2222
'/path/to/strings.xml',
@@ -27,7 +27,7 @@ From Python:
2727

2828
Or from the command line:
2929

30-
python3 -c 'import os_android_files_injector.AppFilesInjector as fi;
30+
python3 -c 'import os_android_files_injector.app_files_injector as fi;
3131
fi.run("/path/to/android/app",
3232
"/path/to/strings.xml",
3333
"/path/to/logo.png",

os_android_files_injector/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
import os_android_files_injector.AppFilesInjector
1+
import os_android_files_injector.app_files_injector

os_android_files_injector/AppFilesInjector.py renamed to os_android_files_injector/app_files_injector.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import os_tools.LoggerHandler as lh
2-
import os_android_files_injector.AppFilesInjectorBp as bp
1+
import os_tools.logger_handler as lh
2+
import os_android_files_injector.modules.app_files_injector_boilerplate as bp
33

44

55
##################################################################################

os_android_files_injector/AppFilesInjectorBp.py renamed to os_android_files_injector/modules/app_files_injector_boilerplate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import os_tools.FileHandler as fh
1+
import os_tools.file_handler as fh
22

33

44
# this is just a boiler plate script for the files injector.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
setup(
44
name='os_android_files_injector',
5-
packages=['os_android_files_injector'],
6-
version='1.04', # Start with a small number and increase it with every change you make
5+
packages=['os_android_files_injector', 'os_android_files_injector.modules'],
6+
version='1.05gi', # Start with a small number and increase it with every change you make
77
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
88
description='a bunch of tools for python xcode project development ', # Give a short description about your library
99
author='Oz Shabat', # Type in your name

0 commit comments

Comments
 (0)