Common.kt 191 B

1234567891011121314
  1. package com.dolin.common
  2. /**
  3. * @author #Suyghur.
  4. * Created on 4/12/21
  5. */
  6. object Common {
  7. init {
  8. System.loadLibrary("dolin-common")
  9. }
  10. external fun testLib(): String
  11. }