make sure the new exif values are saved

This commit is contained in:
tibbi 2018-06-11 12:44:18 +02:00
parent 44c2451075
commit 51d1d5f268
2 changed files with 2 additions and 1 deletions

View file

@ -7,7 +7,7 @@ buildscript {
propMinSdkVersion = 16
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '4.1.5'
propVersionName = '4.1.6'
kotlin_version = '1.2.41'
support_libs = '27.1.1'
}

View file

@ -34,4 +34,5 @@ fun ExifInterface.copyTo(destination: ExifInterface) {
destination.setAttribute(it, value)
}
}
destination.saveAttributes()
}