Hi,
I am getting the SAME set of number sequence on my Android Samsung Note5 device (Android 7). I will kill and restart the app, and the output is the same.
Tested on Android Samsung S3 (Android 4), and the numbers generated are random all the time.
On the Windows simulator, the random numbers differs all the time.
In essence, if I call math.random(1,2), I will ALWAYS get 1 in the first call. It is the same if I change it to other variables like math.random(1,10). Same set of results will appear.
for i=1,10 do print( math.random(1,2) ) end Output : 06-30 14:06:54.190 29369 29390 I Corona : 1 06-30 14:06:54.190 29369 29390 I Corona : 1 06-30 14:06:54.190 29369 29390 I Corona : 2 06-30 14:06:54.190 29369 29390 I Corona : 2 06-30 14:06:54.190 29369 29390 I Corona : 2 06-30 14:06:54.190 29369 29390 I Corona : 1 06-30 14:06:54.190 29369 29390 I Corona : 1 06-30 14:06:54.190 29369 29390 I Corona : 1 06-30 14:06:54.190 29369 29390 I Corona : 2 06-30 14:06:54.190 29369 29390 I Corona : 1
