PackageCompiler App not working other than host computer

Hi, I just join this group and new to the Julia Language. I am trying to create the app that I can send to any other computer, and it should be able to run. But the App I created is only working or my PC. The app is successfully compiling but It is just adding the UUID and the packages name in the project.toml and Manifest.toml. Not the packages in it self that is why when i try to run on other PC it search for the packages with the address from my previous PC.
I am compiling it as follows:
julia> using Pkg
julia> Pkg.generate("My_App")
julia> exit()
cd .\My_App\
julia
using Pkg
Pkg.activate(".")
julia> add JuMP
julia> add CSV
julia> add JuMP
julia> using PackageCompiler
create_app("." , "Compiled" ; executables = [ "My_App" => "julia_main"] , include_lazy_artifacts = true)

  ├── Base:
  │    ├── libLLVM-15jl.dll - 116.914 MiB
  │    ├── libatomic-1.dll - 247.061 KiB
  │    ├── libdSFMT.dll - 117.661 KiB
  │    ├── libgcc_s_seh-1.dll - 752.555 KiB
  │    ├── libgfortran-5.dll - 11.147 MiB
  │    ├── libgmp-10.dll - 1.070 MiB
  │    ├── libgmp.dll - 1.070 MiB```
And It goes on and compiles. Now can anyone tell me if i am doing anything wrong ?