SC200 R-EM Android 10 Repo Init failed

Hi aravinthkumarj1:
We are verifying and will update if repo is ok,thx.

Hi aravinthkumarj1:
Please try this repo version,thx.repo.zip (10.1 KB)

The reason for this error is that in Python 3, strings are Unicode, but when transmitting on the network, the data needs to be bytes instead. We can convert bytes to string using bytes class decode() instance method, So you need to decode the bytes object to produce a string. In Python 3 , the default encoding is “utf-8” , so you can use directly:

b"python byte to string".decode("utf-8")

Python makes a clear distinction between bytes and strings . Bytes objects contain raw data — a sequence of octets — whereas strings are Unicode sequences . Conversion between these two types is explicit: you encode a string to get bytes, specifying an encoding (which defaults to UTF-8); and you decode bytes to get a string. Clients of these functions should be aware that such conversions may fail, and should consider how failures are handled.

` cwd: /home/bhaveshprajapati/QCS6490/.repo/repo.tmp
cmd: [‘git’, ‘tag’, ‘-v’, ‘v1.12.16’]
stdout:

object 666d534636d262cbfd971509dd0f0be0cddb2e11
type commit
tag v1.12.16
tagger Conley Owens cco3@android.com 1398976458 -0700

repo 1.12.16
stderr:
gpg: Signature made Friday 02 May 2014 02:04:18 AM IST
gpg: using RSA key 67B7E448692B382C
gpg: Can’t check signature: No public key
fatal: double check your --repo-rev setting.
fatal: cloning the git-repo repository failed, will remove ‘.repo/repo’
`

I am facing same error which you mention above you solve it can you please help me to solve this error ?

HI, Bhavesh:
How do you download Android code?
This post is too early, we no should download AOSP from Quectel Gitlab.
Thanks.