Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
Re: How to read application's manifest using bright script?
function NWM_Manifest() result = {}
raw = ReadASCIIFile("pkg:/manifest") lines = raw.Tokenize(Chr(10)) for each line in lines bits = line.Tokenize("=") if bits.Count() > 1 result.AddReplace(bits[0], bits[1]) end if next