TrackerControl / xray-archiver-android-ios

Project for the archiving of mobile applications from the Google Play Store and the Apple App Store.
BSD 3-Clause "New" or "Revised" License
3 stars 3 forks source link

Install script failing on `go build` #5

Open sherwinski opened 7 months ago

sherwinski commented 7 months ago

Hello and thanks for creating this package 👋

I ran into the following error when executing the installation script as detailed in the project installation steps:

$ ./scripts/install.sh
# github.com/TrackerControl/xray-archiver-android-ios/pipeline/analyzer
./main.go:61:7: undefined: db.SetManifest
./main.go:148:36: too many arguments in call to db.GetAppsToAnalyze
    have (number)
    want ()

It looks to be referencing db.GetAppsToAnalyze from sociam/xray-archiver rather than the one internal to this project.

For what it might be worth, I also had an issue running this step right before:

$ go get github.com/TrackerControl/xray-archiver-android-ios/pipeline

and attempted to remedy it by running:

$ go mod init github.com/TrackerControl/xray-archiver-android-ios
$ go mod tidy

Any ideas on what I might be missing? I'm not well-versed in go libraries so I might be missing something obvious. Would appreciate any help working through this issue - thanks!